summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-26 15:41:49 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-26 15:41:49 +0000
commit12e93c28cc74b0b04b280450aa12fee787cfbe3b (patch)
tree2108aee82c9599ffd869490c2bdd05e200ca0fc7 /embed.h
parent7d0905b9233398f3457f3ad755f2e0ad2e0e3d95 (diff)
downloadperl-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 'embed.h')
-rw-r--r--embed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed.h b/embed.h
index 9f453d1db3..b3934d10bd 100644
--- a/embed.h
+++ b/embed.h
@@ -395,7 +395,7 @@
#define op_refcnt_lock Perl_op_refcnt_lock
#define op_refcnt_unlock Perl_op_refcnt_unlock
#ifdef PERL_CORE
-#define linklist Perl_linklist
+#define linklist S_linklist
#define list Perl_list
#define listkids Perl_listkids
#endif
@@ -2710,7 +2710,7 @@
#define op_refcnt_lock() Perl_op_refcnt_lock(aTHX)
#define op_refcnt_unlock() Perl_op_refcnt_unlock(aTHX)
#ifdef PERL_CORE
-#define linklist(a) Perl_linklist(aTHX_ a)
+#define linklist(a) S_linklist(aTHX_ a)
#define list(a) Perl_list(aTHX_ a)
#define listkids(a) Perl_listkids(aTHX_ a)
#endif