diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 15:41:49 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 15:41:49 +0000 |
commit | 12e93c28cc74b0b04b280450aa12fee787cfbe3b (patch) | |
tree | 2108aee82c9599ffd869490c2bdd05e200ca0fc7 /op.c | |
parent | 7d0905b9233398f3457f3ad755f2e0ad2e0e3d95 (diff) | |
download | perl-12e93c28cc74b0b04b280450aa12fee787cfbe3b.tar.gz |
"If it's not private, it's public somehow." states Rafael. The most
reliable way I can see to keep our (unsupported) privates private is
to make them static whenever we can.
p4raw-id: //depot/perl@34918
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -786,7 +786,7 @@ Perl_op_refcnt_unlock(pTHX) #define LINKLIST(o) ((o)->op_next ? (o)->op_next : linklist((OP*)o)) OP * -Perl_linklist(pTHX_ OP *o) +S_linklist(pTHX_ OP *o) { OP *first; |