summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-09-20 11:38:46 +0000
committerNicholas Clark <nick@ccl4.org>2008-09-20 11:38:46 +0000
commitc33269f7ccb458ff862134e5befab709e725fca7 (patch)
tree16ab8d17ed362c8a1d72c48e6721eef1e7f93e4f
parent3544fab4392dc5460d212624822bd2db51749f65 (diff)
downloadperl-c33269f7ccb458ff862134e5befab709e725fca7.tar.gz
Two missing 'static's, spotted by Merijn's smoker.
p4raw-id: //depot/perl@34381
-rw-r--r--av.c2
-rw-r--r--regcomp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/av.c b/av.c
index 3d15d58f85..3c9d796a7c 100644
--- a/av.c
+++ b/av.c
@@ -984,7 +984,7 @@ Perl_av_exists(pTHX_ AV *av, I32 key)
return FALSE;
}
-MAGIC *
+static MAGIC *
S_get_aux_mg(pTHX_ AV *av) {
dVAR;
MAGIC *mg;
diff --git a/regcomp.c b/regcomp.c
index f461feabd0..d2567d0157 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -8841,7 +8841,7 @@ S_regcurly(register const char *s)
- regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
*/
#ifdef DEBUGGING
-void
+static void
S_regdump_extflags(pTHX_ const char *lead, const U32 flags)
{
int bit;