From: Richard Levitte Date: Thu, 29 Mar 2007 18:34:57 +0000 (+0000) Subject: Apply a more modern way to get the definition of select(), except for VMS. X-Git-Tag: OpenSSL_0_9_8k^2~926 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a1d915990b887efa91bf84231fb449b749b2b144;p=oweals%2Fopenssl.git Apply a more modern way to get the definition of select(), except for VMS. Submitted by Corinna Vinschen --- diff --git a/apps/ocsp.c b/apps/ocsp.c index c8676fc537..6ae5fd11dd 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -63,7 +63,12 @@ declared properly on Compaq platforms (at least with DEC C). */ -#include +#ifdef OPENSSL_SYS_VMS +# include +#else +# include +# include +#endif #include "apps.h" #include #include