diff options
author | Rich Salz <rsalz@akamai.com> | 2019-06-20 23:07:25 +0200 |
---|---|---|
committer | Rich Salz <rsalz@akamai.com> | 2019-07-01 19:32:46 +0200 |
commit | 6b10d29c1ac7dd4054cdb72e881d3e0213fb7ef0 (patch) | |
tree | 96d031497f0c8add72ddcc51872b0fb23f4eddf9 /crypto/uid.c | |
parent | Fix a leak in evp_test (diff) | |
download | openssl-6b10d29c1ac7dd4054cdb72e881d3e0213fb7ef0.tar.xz openssl-6b10d29c1ac7dd4054cdb72e881d3e0213fb7ef0.zip |
Remove NextStep support
Because of that we can remove OPENSSL_UNISTD and some other
macros from e_os2.h and opensslconf.h
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9204)
Diffstat (limited to 'crypto/uid.c')
-rw-r--r-- | crypto/uid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/uid.c b/crypto/uid.c index 3ae93f6b47..55e276dfe4 100644 --- a/crypto/uid.c +++ b/crypto/uid.c @@ -19,7 +19,7 @@ int OPENSSL_issetugid(void) #elif defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__) -# include OPENSSL_UNISTD +# include <unistd.h> int OPENSSL_issetugid(void) { @@ -28,7 +28,7 @@ int OPENSSL_issetugid(void) #else -# include OPENSSL_UNISTD +# include <unistd.h> # include <sys/types.h> # if defined(__GLIBC__) && defined(__GLIBC_PREREQ) |