summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2006-04-23 16:12:39 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-04-24 07:27:33 +0000
commit675c862fe1d4abfd048dce5f1958cca54b16c501 (patch)
treef569d04f7ab102c470d0dc39c1df6677608e820d /proto.h
parentd6f07c0562911cf76e1e5f209b2eb29c706bd31d (diff)
downloadperl-675c862fe1d4abfd048dce5f1958cca54b16c501.tar.gz
Refactor S_glob_2inpuv
Message-ID: <20060424021239.GA5449@petdance.com> p4raw-id: //depot/perl@27942
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index fa6de13aef..79c367f256 100644
--- a/proto.h
+++ b/proto.h
@@ -2064,9 +2064,13 @@ PERL_CALLCONV IO* Perl_sv_2io(pTHX_ SV* sv)
__attribute__nonnull__(pTHX_1);
#ifdef PERL_IN_SV_C
-STATIC char* S_glob_2inpuv(pTHX_ GV* gv, STRLEN *len, bool want_number)
+STATIC char* S_glob_2inpuv_number(pTHX_ GV* const gv)
__attribute__nonnull__(pTHX_1);
+STATIC char* S_glob_2inpuv(pTHX_ GV* const gv, STRLEN * const len)
+ __attribute__nonnull__(pTHX_1)
+ __attribute__nonnull__(pTHX_2);
+
#endif
/* PERL_CALLCONV IV sv_2iv(pTHX_ SV* sv)
__attribute__nonnull__(pTHX_1); */