summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-26 16:24:07 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-26 16:24:07 +0000
commit412da0037cc4cde2474dfefc6fdc5bdf091f2e24 (patch)
treedef32a8a3524bba385d303252a8a2fb473a514c1 /op.c
parent2dd5337ba7701c25f6807a12b77238cc673d5b07 (diff)
downloadperl-412da0037cc4cde2474dfefc6fdc5bdf091f2e24.tar.gz
listkids() can be static in op.c
p4raw-id: //depot/perl@34920
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index dff969e269..9c278dfafc 100644
--- a/op.c
+++ b/op.c
@@ -1208,7 +1208,7 @@ Perl_scalarvoid(pTHX_ OP *o)
}
OP *
-Perl_listkids(pTHX_ OP *o)
+S_listkids(pTHX_ OP *o)
{
if (o && o->op_flags & OPf_KIDS) {
OP *kid;