blob: 44c3d71874c9a97e80d577d6af0010013d437fc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
* "The Road goes ever on and on, down from the door where it began."
*/
#include "INTERN.h"
#include "perl.h"
static void xs_init _((void));
static PerlInterpreter *my_perl;
/* This value may be raised by extensions for testing purposes */
int perl_destruct_level = 0; /* 0=none, 1=full, 2=full with checks */
int
main(argc, argv, env)
int argc;
char **argv;
char **env;
{
int exitstatus;
#ifdef VMS
getredirection(&argc,&argv);
#endif
if (!do_undump) {
my_perl = perl_alloc();
if (!my_perl)
exit(1);
perl_construct( my_perl );
}
exitstatus = perl_parse( my_perl, xs_init, argc, argv, env );
if (exitstatus)
exit( exitstatus );
exitstatus = perl_run( my_perl );
perl_destruct( my_perl, perl_destruct_level );
perl_free( my_perl );
exit( exitstatus );
}
/* Register any extra external extensions */
static void
xs_init()
{
/* Do not delete this line--writemain depends on it */
}
|