From: Bruno Haible Date: Sun, 24 Aug 2003 19:50:42 +0000 (+0000) Subject: Fix last change. X-Git-Tag: v0.13~301 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ffe3913938041b7ce615f7d50fea9447ca43d12;p=thirdparty%2Fgettext.git Fix last change. --- diff --git a/gettext-tools/lib/error.c b/gettext-tools/lib/error.c index b201dd267..2c8845769 100644 --- a/gettext-tools/lib/error.c +++ b/gettext-tools/lib/error.c @@ -251,7 +251,7 @@ error_tail (int status, int errnum, const char *message, va_list args) Exit with status STATUS if it is nonzero. */ /* VARARGS */ void -#if defined VA_START && __STDC__ +#if defined VA_START && (__STDC__ || defined _MSC_VER) error (int status, int errnum, const char *message, ...) #else error (status, errnum, message, va_alist) @@ -314,7 +314,7 @@ error (status, errnum, message, va_alist) int error_one_per_line; void -#if defined VA_START && __STDC__ +#if defined VA_START && (__STDC__ || defined _MSC_VER) error_at_line (int status, int errnum, const char *file_name, unsigned int line_number, const char *message, ...) #else