From d8863f0bdb4c9e45a725e56f8b61ccc36b026dda Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 18 Jan 2005 16:46:02 +0000 Subject: [PATCH] Small thing. It seems like we have to defined _XOPEN_SOURCE to get isascii() on DEC/Compaq/HP C for VMS. --- ssl/ssltest.c | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.34.1