summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-24 09:40:58 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-24 09:40:58 +0000
commit19f6321d25d193c964d4da055e9f739f63de1dc6 (patch)
treec15eea4f79f7270342f62e1d8ce4a99246afb5eb /proto.h
parentb3f24c00097febc1ee3ecdb31ce34c3df610cbd2 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 6c7679b7b2..8a5b92a4c7 100644
--- a/proto.h
+++ b/proto.h
@@ -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);