diff options
-rw-r--r-- | Build/source/texk/web2c/hitexdir/hitex.w | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/hitexdir/hitex.w b/Build/source/texk/web2c/hitexdir/hitex.w index ef5442721e3..562a999ba14 100644 --- a/Build/source/texk/web2c/hitexdir/hitex.w +++ b/Build/source/texk/web2c/hitexdir/hitex.w @@ -33833,7 +33833,7 @@ static void usage_help(void) @t\qquad@>"\t enable extensions required for LaTeX\n"@/ " -ini "@/ @t\qquad@>"\t be initex for dumping formats; this is\n"@/ - @t\qquad@>"\t\t\t also true if the program name is `kinitex'\n"@/ + @t\qquad@>"\t\t\t also true if the program name is `hinitex'\n"@/ " -progname=STRING "@/ @t\qquad@>"\t set program (and fmt) name to STRING\n"@/ " -fmt=FMTNAME "@/ @@ -34572,6 +34572,10 @@ builds of documents. static time_t start_time = ((time_t)-1); static char *source_date_epoch,*force_source_date; +#if defined(_MSC_VER) && _MSC_VER < 1800 +#define strtoull _strtoui64 +#endif + static struct tm *tl_now(void) {@+struct tm *gmt; time_t t; |