diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-21 14:29:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-21 14:29:05 +0000 |
commit | cf42f822f042b255cd800a089b942e14770a2b0b (patch) | |
tree | 358597bb7770f756e0c8da3a7e3083a2237bc69f /pp_ctl.c | |
parent | be4b629d01f2d7652ca23d114058450262ebd49b (diff) | |
download | perl-cf42f822f042b255cd800a089b942e14770a2b0b.tar.gz |
path_is_absolute() needs a prototype (and maybe
a better name, but that's another story).
p4raw-id: //depot/perl@14367
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3692,8 +3692,8 @@ run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen) /* perhaps someone can come up with a better name for this? it is not really "absolute", per se ... */ -bool -path_is_absolute(char *name) +static bool +S_path_is_absolute(pTHX_ char *name) { if (PERL_FILE_IS_ABSOLUTE(name) #ifdef MACOS_TRADITIONAL |