Re: truncate with file name does not work (with patch)
[p5sagit/p5-mst-13.2.git] / miniperlmain.c
index a17eb7f..2d66964 100644 (file)
@@ -2,26 +2,38 @@
  * "The Road goes ever on and on, down from the door where it began."
  */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include "EXTERN.h"
 #include "perl.h"
 
+#ifdef __cplusplus
+}
+#  define EXTERN_C extern "C"
+#else
+#  define EXTERN_C extern
+#endif
+
 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
+#ifdef CAN_PROTOTYPE
+main(int argc, char **argv, char **env)
+#else
 main(argc, argv, env)
 int argc;
 char **argv;
 char **env;
+#endif
 {
     int exitstatus;
 
-#ifdef VMS
-    getredirection(&argc,&argv);
-#endif
+    PERL_SYS_INIT(&argc,&argv);
+
+    perl_init_i18nl10n(1);
 
     if (!do_undump) {
        my_perl = perl_alloc();
@@ -30,22 +42,25 @@ char **env;
        perl_construct( my_perl );
     }
 
-    exitstatus = perl_parse( my_perl, xs_init, argc, argv, env );
-    if (exitstatus)
-       exit( exitstatus );
-
-    exitstatus = perl_run( my_perl );
+    exitstatus = perl_parse( my_perl, xs_init, argc, argv, (char **) NULL );
+    if (!exitstatus) {
+       exitstatus = perl_run( my_perl );
+    }
 
-    perl_destruct( my_perl, perl_destruct_level );
+    perl_destruct( my_perl );
     perl_free( my_perl );
 
+    PERL_SYS_TERM();
+
     exit( exitstatus );
 }
 
 /* Register any extra external extensions */
 
+/* Do not delete this line--writemain depends on it */
+
 static void
 xs_init()
 {
-    /* Do not delete this line--writemain depends on it */
+  dXSUB_SYS;
 }