diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 16:04:04 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 16:04:04 +0000 |
commit | 2dd5337ba7701c25f6807a12b77238cc673d5b07 (patch) | |
tree | 926d3a92d4e067832ac1e000135dedec46df9725 /embed.fnc | |
parent | 12e93c28cc74b0b04b280450aa12fee787cfbe3b (diff) | |
download | perl-2dd5337ba7701c25f6807a12b77238cc673d5b07.tar.gz |
Following on from change 34918, scalarkids() and scalarseq() can also
be static in op.c, so make it so.
p4raw-id: //depot/perl@34919
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -445,7 +445,9 @@ Ap |void |op_null |NN OP* o EXp |void |op_clear |NN OP* o Ap |void |op_refcnt_lock Ap |void |op_refcnt_unlock +#if defined(PERL_IN_OP_C) s |OP* |linklist |NN OP *o +#endif p |OP* |list |NULLOK OP* o p |OP* |listkids |NULLOK OP* o Apd |void |load_module|U32 flags|NN SV* name|NULLOK SV* ver|... @@ -812,8 +814,10 @@ Ap |void |save_sptr |NN SV** sptr Ap |SV* |save_svref |NN SV** sptr p |OP* |sawparens |NULLOK OP* o p |OP* |scalar |NULLOK OP* o -p |OP* |scalarkids |NULLOK OP* o -p |OP* |scalarseq |NULLOK OP* o +#if defined(PERL_IN_OP_C) +s |OP* |scalarkids |NULLOK OP* o +s |OP* |scalarseq |NULLOK OP* o +#endif p |OP* |scalarvoid |NN OP* o Apd |NV |scan_bin |NN const char* start|STRLEN len|NN STRLEN* retlen Apd |NV |scan_hex |NN const char* start|STRLEN len|NN STRLEN* retlen |