summaryrefslogtreecommitdiffstats
path: root/crypto/uid.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-04-26 08:26:18 +0000
committerRichard Levitte <levitte@openssl.org>2001-04-26 08:26:18 +0000
commit91dc71f98dfa771463d5f0141a4a9e5143e5a6fd (patch)
treeadccbe9ff300f1c461ffdd1490b67dea9b46742f /crypto/uid.c
parentb7b6c047ca5badf3d76187ad2640e5f088e96ecd (diff)
User OPENSSL_UNISTD instead of <unistd.h>.
Spotted by Mark Crispin <MRC@Panda.COM>
Diffstat (limited to 'crypto/uid.c')
-rw-r--r--crypto/uid.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/uid.c b/crypto/uid.c
index 734bddeb60..d3d249c36f 100644
--- a/crypto/uid.c
+++ b/crypto/uid.c
@@ -54,10 +54,11 @@
*/
#include <openssl/crypto.h>
+#include <openssl/opensslconf.h>
#if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2)
-#include <unistd.h>
+#include OPENSSL_UNISTD
int OPENSSL_issetugid(void)
{
@@ -73,7 +74,7 @@ int OPENSSL_issetugid(void)
#else
-#include <unistd.h>
+#include OPENSSL_UNISTD
#include <sys/types.h>
int OPENSSL_issetugid(void)