summaryrefslogtreecommitdiff
path: root/crypto/uid.c
diff options
context:
space:
mode:
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)