diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 22:25:18 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 22:25:18 +0000 |
commit | 9c105995f0120a86f489fa9da8e150fc55635f02 (patch) | |
tree | 1616d443a1213e27344ffb50679b59392fae193a /pp_ctl.c | |
parent | 1f676739c0ff005ad6d6d4d3691c095800bc458c (diff) | |
download | perl-9c105995f0120a86f489fa9da8e150fc55635f02.tar.gz |
rxres_free() and rxres_restore() are only used in pp_ctl.c, so can be
static. Macros PUSHSUBST() and POPSUBST() are only viable in PERL_CORE.
p4raw-id: //depot/perl@34935
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -357,8 +357,8 @@ Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx) } } -void -Perl_rxres_restore(pTHX_ void **rsp, REGEXP *rx) +static void +S_rxres_restore(pTHX_ void **rsp, REGEXP *rx) { UV *p = (UV*)*rsp; U32 i; @@ -387,8 +387,8 @@ Perl_rxres_restore(pTHX_ void **rsp, REGEXP *rx) } } -void -Perl_rxres_free(pTHX_ void **rsp) +static void +S_rxres_free(pTHX_ void **rsp) { UV * const p = (UV*)*rsp; |