diff options
author | 2014-04-13 21:11:19 +0000 | |
---|---|---|
committer | 2014-04-13 21:11:19 +0000 | |
commit | 2fa0eb2764f33e59b5fd5c912036aeae676b2591 (patch) | |
tree | 75d49a5f5c352421e2f17db5737fc9c89a41c7b7 /lib/libssl/d1_lib.c | |
parent | remove more cases of MS_STATIC, MS_CALLBACK, and MS_FAR. Did you (diff) | |
download | wireguard-openbsd-2fa0eb2764f33e59b5fd5c912036aeae676b2591.tar.xz wireguard-openbsd-2fa0eb2764f33e59b5fd5c912036aeae676b2591.zip |
Do not include "e_os.h" anymore. Simply pull in the necessary headers.
ok miod@, deraadt@
Diffstat (limited to 'lib/libssl/d1_lib.c')
-rw-r--r-- | lib/libssl/d1_lib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libssl/d1_lib.c b/lib/libssl/d1_lib.c index 106939f2417..7565ce7e366 100644 --- a/lib/libssl/d1_lib.c +++ b/lib/libssl/d1_lib.c @@ -57,8 +57,12 @@ * */ +#include <sys/param.h> +#include <sys/socket.h> + +#include <netinet/in.h> + #include <stdio.h> -#define USE_SOCKETS #include <openssl/objects.h> #include "ssl_locl.h" |