diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-24 09:40:58 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-24 09:40:58 +0000 |
commit | 19f6321d25d193c964d4da055e9f739f63de1dc6 (patch) | |
tree | c15eea4f79f7270342f62e1d8ce4a99246afb5eb /proto.h | |
parent | b3f24c00097febc1ee3ecdb31ce34c3df610cbd2 (diff) | |
download | perl-19f6321d25d193c964d4da055e9f739f63de1dc6.tar.gz |
Following change 27942 it's clear that the return type of
glob_2inpuv_number() should change. Rename it and glob_2inpuv() to
reflect what they do.
p4raw-id: //depot/perl@27947
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2065,10 +2065,10 @@ PERL_CALLCONV IO* Perl_sv_2io(pTHX_ SV* sv) __attribute__nonnull__(pTHX_1); #ifdef PERL_IN_SV_C -STATIC char* S_glob_2inpuv_number(pTHX_ GV* const gv) +STATIC bool S_glob_2number(pTHX_ GV* const gv) __attribute__nonnull__(pTHX_1); -STATIC char* S_glob_2inpuv(pTHX_ GV* const gv, STRLEN * const len) +STATIC char* S_glob_2pv(pTHX_ GV* const gv, STRLEN * const len) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); |