summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-26 19:36:06 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-26 19:36:06 +0000
commitb7783a124ffeaab87679eba041dd9997f4d5372a (patch)
treeaf245ee575199fdd19d5d912348560ee4e2f5f53 /op.c
parente3cf49e2e2df78528afdd14c4a3219cf5059e6eb (diff)
downloadperl-b7783a124ffeaab87679eba041dd9997f4d5372a.tar.gz
force_list(), fold_constants() and gen_constant_list() can be static.
p4raw-id: //depot/perl@34924
Diffstat (limited to 'op.c')
-rw-r--r--op.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/op.c b/op.c
index 990cf4bb34..024996dadc 100644
--- a/op.c
+++ b/op.c
@@ -2431,7 +2431,7 @@ Perl_jmaybe(pTHX_ OP *o)
}
OP *
-Perl_fold_constants(pTHX_ register OP *o)
+S_fold_constants(pTHX_ register OP *o)
{
dVAR;
register OP * VOL curop;
@@ -2572,7 +2572,7 @@ Perl_fold_constants(pTHX_ register OP *o)
}
OP *
-Perl_gen_constant_list(pTHX_ register OP *o)
+S_gen_constant_list(pTHX_ register OP *o)
{
dVAR;
register OP *curop;
@@ -2986,7 +2986,7 @@ Perl_newNULLLIST(pTHX)
}
OP *
-Perl_force_list(pTHX_ OP *o)
+S_force_list(pTHX_ OP *o)
{
if (!o || o->op_type != OP_LIST)
o = newLISTOP(OP_LIST, 0, o, NULL);