diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-30 08:05:32 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-30 08:05:32 +0000 |
commit | e4dba78629baadf544a977b8105c4c2d93050b21 (patch) | |
tree | ccfb57be30afc7aa0fe7f0d4871241bf72e2b5d0 /proto.h | |
parent | dbab294c68e8160ef916906a4beca1da8c0c2ec5 (diff) | |
download | perl-e4dba78629baadf544a977b8105c4c2d93050b21.tar.gz |
Replace do_open() with a macro to call do_openn() with the extra two
0 paramters. Move the old body to mathoms.c.
p4raw-id: //depot/perl@25889
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -441,9 +441,9 @@ PERL_CALLCONV void Perl_do_join(pTHX_ SV* sv, SV* del, SV** mark, SV** sp) __attribute__nonnull__(pTHX_4); PERL_CALLCONV OP* Perl_do_kv(pTHX); -PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp) +/* PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp) __attribute__nonnull__(pTHX_1) - __attribute__nonnull__(pTHX_2); + __attribute__nonnull__(pTHX_2); */ PERL_CALLCONV bool Perl_do_open9(pTHX_ GV *gv, const char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, I32 num) __attribute__nonnull__(pTHX_1) |