Add missing include of sys/time.h

gettimeofday was undefined

Reviewed-by: Geoff Thorpe <geoff@openssl.org>
This commit is contained in:
Kurt Roeckx 2014-12-30 17:14:49 +01:00
parent 1d97c84351
commit 97d5809c2b

View File

@ -66,6 +66,9 @@
#include <openssl/bio.h>
#ifndef OPENSSL_NO_DGRAM
#if !(defined(_WIN32) || defined(OPENSSL_SYS_VMS))
# include <sys/time.h>
#endif
#if defined(OPENSSL_SYS_VMS)
#include <sys/timeb.h>
#endif