From 3d7e32d28dc9962e9efc1c317c5b44b5b2df3008 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 6 Jun 2015 18:16:22 +0000 Subject: add macro version of ctype.h isascii function presumably internal code (ungetwc and fputwc) was written assuming a macro implementation existed; otherwise use of isascii is just a pessimization. --- src/ctype/isascii.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ctype') diff --git a/src/ctype/isascii.c b/src/ctype/isascii.c index 3af0a10d..54ad3bf0 100644 --- a/src/ctype/isascii.c +++ b/src/ctype/isascii.c @@ -1,4 +1,5 @@ #include +#undef isascii int isascii(int c) { -- cgit v1.2.1