diff options
author | Richard Levitte <levitte@openssl.org> | 2000-02-26 03:55:15 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-02-26 03:55:15 +0000 |
commit | a1990dd76d07d2ad9d2d32666ec6022bd23da6aa (patch) | |
tree | dfada3ea67682d9a397dc2f46915f0a0ad378050 /crypto | |
parent | cb464c38b2822087cf42c537831f1d363c1af5a8 (diff) | |
download | openssl-new-a1990dd76d07d2ad9d2d32666ec6022bd23da6aa.tar.gz |
Don't include sys/types.h if NO_SYS_TYPES_H is defined.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bio/b_print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 57fa09ee35..caf2235cc2 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -64,8 +64,10 @@ #include <stdarg.h> #include <string.h> #include <ctype.h> -#include <sys/types.h> #include "cryptlib.h" +#ifndef NO_SYS_TYPES_H +#include <sys/types.h> +#endif #include <openssl/bio.h> #ifdef BN_LLONG |