-Wall is intolerably noisy with icc.
[p5sagit/p5-mst-13.2.git] / NetWare / netware.h
index f9ae1bf..18089d5 100644 (file)
@@ -48,6 +48,10 @@ struct tms {
 #define HAVE_INTERP_INTERN
 struct interp_intern {
     void *     internal_host;
+    long       perlshell_items;        // For system() ;  Ananth, 3 Sept 2001
+
+    char *     perlshell_tokens;       // For system() ; From Win32 of Perl 5.8 on 24 June 2002
+    char **    perlshell_vec;  // For system() ; From Win32 of Perl 5.8 on 24 June 2002
 };
 
 /*
@@ -66,6 +70,10 @@ typedef u_int           SOCKET;
 #endif
 
 #define nw_internal_host               (PL_sys_intern.internal_host)
+#define nw_perlshell_items     (PL_sys_intern.perlshell_items)         // For system() ;  Ananth, 3 Sept 2001
+
+#define nw_perlshell_tokens    (PL_sys_intern.perlshell_tokens)        // For system() ; From Win32 of Perl 5.8 on 24 June 2002
+#define nw_perlshell_vec       (PL_sys_intern.perlshell_vec)   // For system() ; From Win32 of Perl 5.8 on 24 June 2002
 
 EXTERN_C void  Perl_nw5_init(int *argcp, char ***argvp);