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/des | |
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/des')
-rw-r--r-- | lib/libcrypto/des/des_locl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libcrypto/des/des_locl.h b/lib/libcrypto/des/des_locl.h index 1a21467b3eb..cf28f59d4ad 100644 --- a/lib/libcrypto/des/des_locl.h +++ b/lib/libcrypto/des/des_locl.h @@ -59,14 +59,15 @@ #ifndef HEADER_DES_LOCL_H #define HEADER_DES_LOCL_H -#include <openssl/e_os2.h> - #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <math.h> + +#include <openssl/opensslconf.h> + #include <openssl/des.h> #define ITERATIONS 16 |