From: Richard Levitte Date: Tue, 18 Jan 2005 16:46:02 +0000 (+0000) Subject: Small thing. It seems like we have to defined _XOPEN_SOURCE to get X-Git-Tag: OpenSSL_0_9_7g~17^2~66 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=d8863f0bdb4c9e45a725e56f8b61ccc36b026dda Small thing. It seems like we have to defined _XOPEN_SOURCE to get isascii() on DEC/Compaq/HP C for VMS. --- diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 1b6b4e9493..698c84a179 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -116,6 +116,8 @@ #define _BSD_SOURCE 1 /* Or gethostname won't be declared properly on Linux and GNU platforms. */ +#define _XOPEN_SOURCE 1 /* Ot isascii won't be declared properly on + VMS (at least with DECompHP C). */ #include #include