diff options
author | Richard Levitte <levitte@openssl.org> | 2001-02-19 23:04:02 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-02-19 23:04:02 +0100 |
commit | 74cd365b0377705c2cac9ac722d4cf2199625ecf (patch) | |
tree | a4b72fe4a4289004f72ea78f57455a2e5ca09415 /crypto/uid.c | |
parent | I forgot to document the system identification macros (diff) | |
download | openssl-74cd365b0377705c2cac9ac722d4cf2199625ecf.tar.xz openssl-74cd365b0377705c2cac9ac722d4cf2199625ecf.zip |
Use the new-style system-identity macros.
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 5612af48cf..734bddeb60 100644 --- a/crypto/uid.c +++ b/crypto/uid.c @@ -53,7 +53,7 @@ * */ -#include "openssl/crypto.h" +#include <openssl/crypto.h> #if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) @@ -64,7 +64,7 @@ int OPENSSL_issetugid(void) return issetugid(); } -#elif defined(WIN32) +#elif defined(OPENSSL_SYS_WIN32) int OPENSSL_issetugid(void) { |