summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-01-21 14:29:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-21 14:29:05 +0000
commitcf42f822f042b255cd800a089b942e14770a2b0b (patch)
tree358597bb7770f756e0c8da3a7e3083a2237bc69f /pp_ctl.c
parentbe4b629d01f2d7652ca23d114058450262ebd49b (diff)
downloadperl-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index a7736e3213..8805316d70 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -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