From: Marc G. Fournier Date: Mon, 6 Jan 1997 00:22:55 +0000 (+0000) Subject: PORT NeXT requires an isascii() define...put it in config.h, most likely X-Git-Tag: REL6_1~785 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9bfcf459e19c357faa929d0523fb937d7d28ab6;p=postgresql 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? --- diff --git a/src/include/config.h b/src/include/config.h index 255f3b7e65..08ab5861f7 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