From: Jim Meyering Date: Tue, 6 Apr 1993 02:45:12 +0000 (+0000) Subject: undef isascii before redefining X-Git-Tag: FILEUTILS-3_8_3b~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67c4edfeb2ba2a1aff0b42bf2f1bbdb737385b49;p=thirdparty%2Fcoreutils.git undef isascii before redefining --- diff --git a/lib/regex.c b/lib/regex.c index eda11b5350..247f5f1d75 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -127,7 +127,8 @@ init_syntax_once () /* isalpha etc. are used for the character classes. */ #include -#ifndef isascii +#if !defined (isascii) || defined (STDC_HEADERS) +#undef isascii #define isascii(c) 1 #endif