summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-02-22 13:34:29 +0100
committerNicholas Clark <nick@ccl4.org>2009-02-22 13:34:29 +0100
commit2cace6acdfad87b2d298bff18b91b339c18fd1e3 (patch)
tree02f2647c17004829b22f146b42011461378cc330 /embed.h
parent3964fe451ce5f6b8f88b9ff141ae23128368356b (diff)
downloadperl-2cace6acdfad87b2d298bff18b91b339c18fd1e3.tar.gz
Unwind the implicit loop in S_init_perllib(), by writing the code out longhand.
Call it only once, remove the old_vers parameter, and all the related conditional code.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index cfe24ca7f3..f59518e8eb 100644
--- a/embed.h
+++ b/embed.h
@@ -3631,7 +3631,7 @@
#define init_interp() S_init_interp(aTHX)
#define init_ids() S_init_ids(aTHX)
#define init_main_stash() S_init_main_stash(aTHX)
-#define init_perllib(a) S_init_perllib(aTHX_ a)
+#define init_perllib() S_init_perllib(aTHX)
#define init_postdump_symbols(a,b,c) S_init_postdump_symbols(aTHX_ a,b,c)
#define init_predump_symbols() S_init_predump_symbols(aTHX)
#define my_exit_jump() S_my_exit_jump(aTHX)