diff options
author | Bodo Möller <bodo@openssl.org> | 1999-06-09 13:23:38 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-06-09 13:23:38 +0000 |
commit | e766a681aa4df604b20ce2d23cd131b74af9eaf7 (patch) | |
tree | 6ab2ba6c2881f49cb0ec8091d04100eef3653c84 /crypto/des/destest.c | |
parent | 9e952fc8770bf72b03fdd7acf6a1843070b44b4b (diff) | |
download | openssl-new-e766a681aa4df604b20ce2d23cd131b74af9eaf7.tar.gz |
Some pre-POSIX systems don't have unistd.h (but e.g. lib.c).
Allow configuring the name of that header file.
Diffstat (limited to 'crypto/des/destest.c')
-rw-r--r-- | crypto/des/destest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/des/destest.c b/crypto/des/destest.c index 0054fb9a97..d92fabdf3f 100644 --- a/crypto/des/destest.c +++ b/crypto/des/destest.c @@ -66,7 +66,8 @@ #include <stdlib.h> #ifndef MSDOS #if !defined(VMS) || defined(__DECC) -#include <unistd.h> +#include <openssl/opensslconf.h> +#include OPENSSL_UNISTD #endif /* VMS */ #else #include <io.h> |