diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 23:20:31 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 23:20:31 +0000 |
commit | 051b305ded17acbcebcc33237adf2a68c22c2001 (patch) | |
tree | c331d2c02f22f3bead40111ee77cdaf640b11cd5 /util.c | |
parent | 90f7771ac004a1086e5ea9601d735c6ab0abc0e4 (diff) | |
download | perl-051b305ded17acbcebcc33237adf2a68c22c2001.tar.gz |
setenv_getix() is not used anywhere other than util.c (and the "special
biologist word for stable" Msql-Mysql-modules-1.2219) so make it
static.
p4raw-id: //depot/perl@34940
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1774,8 +1774,8 @@ Perl_my_setenv(pTHX_ const char *nam, const char *val) #endif /* WIN32 || NETWARE */ #ifndef PERL_MICRO -I32 -Perl_setenv_getix(pTHX_ const char *nam) +static I32 +S_setenv_getix(pTHX_ const char *nam) { register I32 i; register const I32 len = strlen(nam); |