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/whrlpool | |
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/whrlpool')
-rw-r--r-- | lib/libcrypto/whrlpool/whrlpool.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/whrlpool/whrlpool.h b/lib/libcrypto/whrlpool/whrlpool.h index 03c91da1155..e417bfc19e2 100644 --- a/lib/libcrypto/whrlpool/whrlpool.h +++ b/lib/libcrypto/whrlpool/whrlpool.h @@ -1,9 +1,10 @@ #ifndef HEADER_WHRLPOOL_H #define HEADER_WHRLPOOL_H -#include <openssl/e_os2.h> #include <stddef.h> +#include <openssl/opensslconf.h> + #ifdef __cplusplus extern "C" { #endif |