diff options
-rw-r--r-- | crypto/uid.c | 5 |
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) |