Small thing. It seems like we have to defined _XOPEN_SOURCE to get
authorRichard Levitte <levitte@openssl.org>
Tue, 18 Jan 2005 16:46:02 +0000 (16:46 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 18 Jan 2005 16:46:02 +0000 (16:46 +0000)
isascii() on DEC/Compaq/HP C for VMS.

ssl/ssltest.c

index 1b6b4e94932680c5fc59a29697c351106d022914..698c84a1799cfe7d829fc31fc73c635f4e3bf636 100644 (file)
 
 #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 <assert.h>
 #include <errno.h>