summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2006-02-07 10:36:56 -0600
committerSteve Peters <steve@fisharerojo.org>2006-02-08 03:23:27 +0000
commit294a48e93682c45d53fd3e8adb7bbdd7068cbb1d (patch)
treea6878848cea71feb8b3cc4a56a0c3ba4ea7238b0 /pp_sys.c
parent78f158d1419ac33753582a090b1b89196bbfe093 (diff)
downloadperl-294a48e93682c45d53fd3e8adb7bbdd7068cbb1d.tar.gz
Handle unused args
Message-ID: <20060207223656.GA5177@petdance.com> p4raw-id: //depot/perl@27129
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 1659888abe..8e8004ad43 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -307,8 +307,8 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
STATIC int
S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
{
- (void)path;
- (void)mode;
+ PERL_UNUSED_ARG(path);
+ PERL_UNUSED_ARG(mode);
Perl_croak(aTHX_ "switching effective uid is not implemented");
/*NOTREACHED*/
return -1;