diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-01-06 00:22:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-01-06 00:22:55 +0000 |
commit | a9bfcf459e19c357faa929d0523fb937d7d28ab6 (patch) | |
tree | 78ad3e0ca0cb111ef3a83659a4845eed2db7200b /src | |
parent | 151d484ca5ea8b55c405506e72adf4446be6ed99 (diff) | |
download | postgresql-a9bfcf459e19c357faa929d0523fb937d7d28ab6.tar.gz postgresql-a9bfcf459e19c357faa929d0523fb937d7d28ab6.zip |
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?
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 |