diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-10 14:11:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-10 14:11:15 +0000 |
commit | 7f4774ae47f6628888c2da9409229189fba57844 (patch) | |
tree | c1e262736046e81b3df014ae36b194c098cf7778 /perlapi.c | |
parent | 884baa66f4892b29ff648df5ff336287a8c8c7c0 (diff) | |
download | perl-7f4774ae47f6628888c2da9409229189fba57844.tar.gz |
Use Mode_t.
p4raw-id: //depot/cfgperl@3949
Diffstat (limited to 'perlapi.c')
-rwxr-xr-x | perlapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |