summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-10-30 08:05:32 +0000
committerNicholas Clark <nick@ccl4.org>2005-10-30 08:05:32 +0000
commite4dba78629baadf544a977b8105c4c2d93050b21 (patch)
treeccfb57be30afc7aa0fe7f0d4871241bf72e2b5d0 /proto.h
parentdbab294c68e8160ef916906a4beca1da8c0c2ec5 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 64db0d83d9..c660355c14 100644
--- a/proto.h
+++ b/proto.h
@@ -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)