diff options
author | Andy Lester <andy@petdance.com> | 2006-04-23 16:12:39 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-04-24 07:27:33 +0000 |
commit | 675c862fe1d4abfd048dce5f1958cca54b16c501 (patch) | |
tree | f569d04f7ab102c470d0dc39c1df6677608e820d /proto.h | |
parent | d6f07c0562911cf76e1e5f209b2eb29c706bd31d (diff) | |
download | perl-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.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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); */ |