From: Jim Meyering Date: Sun, 25 Jun 2000 06:54:32 +0000 (+0000) Subject: (print_unicode_char): Work around ansi2knr deficiency. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45fb04778c3cb4f91da291c214461deb45e7c857;p=pspp (print_unicode_char): Work around ansi2knr deficiency. --- diff --git a/lib/unicodeio.c b/lib/unicodeio.c index a846bb09e9..1388852925 100644 --- a/lib/unicodeio.c +++ b/lib/unicodeio.c @@ -121,7 +121,7 @@ print_unicode_char (FILE *stream, unsigned int code) if (!initialized) { - extern const char *locale_charset (void); + extern const char *locale_charset PARAMS ((void)); const char *charset = locale_charset (); is_utf8 = (charset != NULL && !strcmp (charset, UTF8_NAME));