Apply a more modern way to get the definition of select(), except for VMS.

Submitted by Corinna Vinschen <vinschen@redhat.com>
This commit is contained in:
Richard Levitte 2007-03-29 18:34:57 +00:00
parent b002265ee3
commit a1d915990b

View File

@ -63,7 +63,12 @@
declared properly on Compaq platforms
(at least with DEC C).
*/
#include <time.h>
#ifdef OPENSSL_SYS_VMS
# include <time.h>
#else
# include <sys/time.h>
# include <sys/select.h>
#endif
#include "apps.h"
#include <openssl/pem.h>
#include <openssl/ocsp.h>