diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-07-12 22:10:35 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-07-12 22:10:35 +0000 |
commit | 35722e7202d303b4034282b06c77d29446974837 (patch) | |
tree | b3c3313406da3e0860f85130cb0953f972f6febf /embed.h | |
parent | 13f4c5e485d010d93c3fcebf4b4abd62f988e9fd (diff) | |
download | perl-35722e7202d303b4034282b06c77d29446974837.tar.gz |
really really fix S_emulate_eaccess compiler warning (#31536 didn't)
p4raw-id: //depot/perl@31600
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1350,7 +1350,7 @@ #ifdef PERL_CORE #define doform S_doform #endif -# if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS) && (defined(HAS_SETREUID) || defined(HAS_SETRESUID) || defined(HAS_SETREGID) || defined(HAS_SETRESGID)) +# if !defined(PERL_EFF_ACCESS) #ifdef PERL_CORE #define emulate_eaccess S_emulate_eaccess #endif @@ -3640,7 +3640,7 @@ #ifdef PERL_CORE #define doform(a,b,c) S_doform(aTHX_ a,b,c) #endif -# if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS) && (defined(HAS_SETREUID) || defined(HAS_SETRESUID) || defined(HAS_SETREGID) || defined(HAS_SETRESGID)) +# if !defined(PERL_EFF_ACCESS) #ifdef PERL_CORE #define emulate_eaccess(a,b) S_emulate_eaccess(aTHX_ a,b) #endif |