summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-07-12 22:10:35 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-07-12 22:10:35 +0000
commit35722e7202d303b4034282b06c77d29446974837 (patch)
treeb3c3313406da3e0860f85130cb0953f972f6febf /embed.h
parent13f4c5e485d010d93c3fcebf4b4abd62f988e9fd (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed.h b/embed.h
index 76d8387dd6..e6accd90bf 100644
--- a/embed.h
+++ b/embed.h
@@ -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