1 #include <EXTERN.h> /* from the Perl distribution */
2 #include <perl.h> /* from the Perl distribution */
4 extern void xs_init
_((void));
6 static PerlInterpreter
*iperl
; /*** The Perl interpreter ***/
9 perl_main(int argc
, char **argv
, char **env
)
14 perl_construct(iperl
);
15 perl_parse(iperl
, xs_init
, argc
, argv
, (char **)NULL
);
18 PerlIO_flush(PerlIO_stdout());
19 PerlIO_flush(PerlIO_stderr());