summaryrefslogtreecommitdiff
path: root/perlapi.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-08-10 14:11:15 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-08-10 14:11:15 +0000
commit7f4774ae47f6628888c2da9409229189fba57844 (patch)
treec1e262736046e81b3df014ae36b194c098cf7778 /perlapi.c
parent884baa66f4892b29ff648df5ff336287a8c8c7c0 (diff)
downloadperl-7f4774ae47f6628888c2da9409229189fba57844.tar.gz
Use Mode_t.
p4raw-id: //depot/cfgperl@3949
Diffstat (limited to 'perlapi.c')
-rwxr-xr-xperlapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/perlapi.c b/perlapi.c
index 4875caa481..05681a5747 100755
--- a/perlapi.c
+++ b/perlapi.c
@@ -253,10 +253,10 @@ Perl_call_list(pTHXo_ I32 oldscope, AV* av_list)
}
#undef Perl_cando
-I32
-Perl_cando(pTHXo_ I32 bit, Uid_t effective, Stat_t* statbufp)
+bool
+Perl_cando(pTHXo_ Mode_t mode, Uid_t effective, Stat_t* statbufp)
{
- return ((CPerlObj*)pPerl)->Perl_cando(bit, effective, statbufp);
+ return ((CPerlObj*)pPerl)->Perl_cando(mode, effective, statbufp);
}
#undef Perl_cast_ulong