diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 21:33:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 21:33:54 +0000 |
commit | ed4173efcf6003662845168e71abec2ddbd06df1 (patch) | |
tree | b381d2367a5d029f625c6d5758db9399a097008d /proto.h | |
parent | 9d8f40c4d2ff3c9a7ded072d81df73638a8c1d83 (diff) | |
download | perl-ed4173efcf6003662845168e71abec2ddbd06df1.tar.gz |
pidgone() is only used in util.c, so it can be static.
p4raw-id: //depot/perl@34932
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2497,8 +2497,8 @@ PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *pat #define PERL_ARGS_ASSERT_PACKLIST \ assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist) -#ifdef PERL_USES_PL_PIDSTATUS -PERL_CALLCONV void Perl_pidgone(pTHX_ Pid_t pid, int status); +#if defined(PERL_USES_PL_PIDSTATUS) && defined(PERL_IN_UTIL_C) +STATIC void S_pidgone(pTHX_ Pid_t pid, int status); #endif PERL_CALLCONV void Perl_pmflag(pTHX_ U32* pmfl, int ch) __attribute__nonnull__(pTHX_1); |