From a9bfcf459e19c357faa929d0523fb937d7d28ab6 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" <scrappy@hub.org> Date: Mon, 6 Jan 1997 00:22:55 +0000 Subject: [PATCH] PORT NeXT requires an isascii() define...put it in config.h, most likely *should* have gone into the ports directory, but hopefully *someday* we'll be able to get rid of that? --- src/include/config.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/config.h b/src/include/config.h index 255f3b7e65d..08ab5861f7b 100644 --- a/src/include/config.h +++ b/src/include/config.h @@ -140,6 +140,9 @@ /* does anybody use this? */ #if defined(next) +# if defined(__STRICT_ANSI__) +# define isascii(c) ((unsigned)(c)<=0177) +# endif # define USE_LIMITS_H # define JMP_BUF # define NEED_SIG_JMP -- GitLab