summaryrefslogtreecommitdiffstats
path: root/crypto/uid.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-06-20 23:07:25 +0200
committerRich Salz <rsalz@akamai.com>2019-07-01 19:32:46 +0200
commit6b10d29c1ac7dd4054cdb72e881d3e0213fb7ef0 (patch)
tree96d031497f0c8add72ddcc51872b0fb23f4eddf9 /crypto/uid.c
parentFix a leak in evp_test (diff)
downloadopenssl-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.c4
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)