summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--op.c4
-rw-r--r--pad.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/op.c b/op.c
index bd64a5d38d..f506bff3dd 100644
--- a/op.c
+++ b/op.c
@@ -8362,7 +8362,7 @@ Perl_ck_each(pTHX_ OP *o)
/* caller is supposed to assign the return to the
container of the rep_op var */
-OP *
+STATIC OP *
S_opt_scalarhv(pTHX_ OP *rep_op) {
UNOP *unop;
@@ -8391,7 +8391,7 @@ S_opt_scalarhv(pTHX_ OP *rep_op) {
* beginning of the right-hand side. Returns the left-hand side of the
* assignment if o acts in-place, or NULL otherwise. */
-OP *
+STATIC OP *
S_is_inplace_av(pTHX_ OP *o, OP *oright) {
OP *o2;
OP *oleft = NULL;
diff --git a/pad.c b/pad.c
index bae83f4112..fdf4402af5 100644
--- a/pad.c
+++ b/pad.c
@@ -560,7 +560,7 @@ C<is_our> indicates that the name to check is an 'our' declaration
=cut
*/
-void
+STATIC void
S_pad_check_dup(pTHX_ SV *name, const U32 flags, const HV *ourstash)
{
dVAR;