diff options
author | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2020-05-01 09:58:54 +0000 |
---|---|---|
committer | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2020-05-01 09:58:54 +0000 |
commit | 97ff25aeb623a0fc7dce536c946e59a4052fc588 (patch) | |
tree | 58f3e410424a68e5a9e99fcf9146ccc597d7c6ab /Build/source/texk/seetexk/dviconcat.c | |
parent | 22e024a12ca7fb8ceb660b3da19adbf7c9a26353 (diff) |
seetexk: Add version number and bug report address in usage
git-svn-id: svn://tug.org/texlive/trunk@54957 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/seetexk/dviconcat.c')
-rw-r--r-- | Build/source/texk/seetexk/dviconcat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Build/source/texk/seetexk/dviconcat.c b/Build/source/texk/seetexk/dviconcat.c index 447c1228302..0184829e609 100644 --- a/Build/source/texk/seetexk/dviconcat.c +++ b/Build/source/texk/seetexk/dviconcat.c @@ -52,11 +52,7 @@ extern int optind; #include "search.h" #include <stdio.h> #include <ctype.h> - -#if defined(WIN32) && defined(KPATHSEA) -#undef fopen -#define fopen fsyscp_fopen -#endif +#include "common.h" char *ProgName; @@ -440,8 +436,12 @@ main(int argc, char **argv) case '?': usage: (void) fprintf(stderr, + "dviconcat in SeeTeX Ver.%s (%s)\n", VERSION, TL_VERSION); + (void) fprintf(stderr, "Usage: %s [-m mag] [-o outfile] [files]\n", ProgName); + (void) fprintf(stderr, + "\nEmail bug reports to %s.\n", BUG_ADDRESS); (void) fflush(stderr); exit(1); } |