1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-17 09:05:50 +02:00

undef isascii before redefining

This commit is contained in:
Jim Meyering
1993-04-06 02:45:12 +00:00
parent 5e292210c9
commit 67c4edfeb2

View File

@@ -127,7 +127,8 @@ init_syntax_once ()
/* isalpha etc. are used for the character classes. */
#include <ctype.h>
#ifndef isascii
#if !defined (isascii) || defined (STDC_HEADERS)
#undef isascii
#define isascii(c) 1
#endif