diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-07-08 11:21:15 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-09 07:54:26 +0200 |
commit | d573a731832b47514921a72ae88e60b18be87e33 (patch) | |
tree | 633ec9e525b837c2d89d614750887413ef674bf1 /miniperlmain.c | |
parent | 5ec3aaed3924eb916d899592d7ddce99dd92959b (diff) | |
download | perl-d573a731832b47514921a72ae88e60b18be87e33.tar.gz |
Refactor ExtUtils::Miniperl to use ExtUtils::Embed.
There is now only one copy of Perl code to generate the C for an xsinit()
function.
This also eliminates ExtUtils::Miniperl::canon(), which was not exported, and
is no longer needed.
Diffstat (limited to 'miniperlmain.c')
-rw-r--r-- | miniperlmain.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miniperlmain.c b/miniperlmain.c index 7b96e482fa..71b9424fc3 100644 --- a/miniperlmain.c +++ b/miniperlmain.c @@ -40,9 +40,8 @@ #endif #endif - -#include "EXTERN.h" #define PERL_IN_MINIPERLMAIN_C +#include "EXTERN.h" #include "perl.h" #include "XSUB.h" |