diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 09:16:09 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 09:16:09 +0000 |
commit | 9c75e6a8e6f2d01462e7584daa387bdc0ad66e18 (patch) | |
tree | 429efd3b04307977ce3a42bab146fbf05641f5ec /lib/libcrypto/md4 | |
parent | 878a6ae2cf9036ccc7ba0650264698c99c71c363 (diff) |
Almost nothing actually needs to include <openssl/e_os2.h>, however by
including it they get <openssl/opensslconf.h>. So instead of pulling in
<openssl/e_os2.h>, just pull in <openssl/opensslconf.h>.
"go ahead" miod@
Diffstat (limited to 'lib/libcrypto/md4')
-rw-r--r-- | lib/libcrypto/md4/md4.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/md4/md4.h b/lib/libcrypto/md4/md4.h index b241ea1e9b7..9a9f0bcb1e6 100644 --- a/lib/libcrypto/md4/md4.h +++ b/lib/libcrypto/md4/md4.h @@ -59,9 +59,10 @@ #ifndef HEADER_MD4_H #define HEADER_MD4_H -#include <openssl/e_os2.h> #include <stddef.h> +#include <openssl/opensslconf.h> + #ifdef __cplusplus extern "C" { #endif |