From: Dave Mitchell Date: Mon, 24 Sep 2007 14:18:03 +0000 (+0000) Subject: sixth attempt to silence S_emulate_eaccess compiler warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d686460631456fd94087dd18913a0b79995da976;p=p5sagit%2Fp5-mst-13.2.git sixth attempt to silence S_emulate_eaccess compiler warning p4raw-id: //depot/perl@31954 --- diff --git a/pp_sys.c b/pp_sys.c index 7d0bb2d..7770dc2 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -297,7 +297,7 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) return res; } -# define PERL_EFF_ACCESS(p,f) (emulate_eaccess(aTHX_ (p), (f))) +# define PERL_EFF_ACCESS(p,f) (S_emulate_eaccess(aTHX_ (p), (f))) #endif PP(pp_backtick)