diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-02 07:28:23 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-02 07:28:23 +0000 |
commit | 3fe35a814d0a98f430bf0a538c953f3564df33ca (patch) | |
tree | 0b62c5168c8d25149355a37131a6f4b42fd9b10a /miniperlmain.c | |
parent | d56e67234a7ede28ce69ee834917e4b5025d971b (diff) | |
download | perl-3fe35a814d0a98f430bf0a538c953f3564df33ca.tar.gz |
[win32] Revert to keeping (some) constant strings as globals
p4raw-id: //depot/win32/perl@349
Diffstat (limited to 'miniperlmain.c')
-rw-r--r-- | miniperlmain.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miniperlmain.c b/miniperlmain.c index 9b45889419..b6c5c65b4d 100644 --- a/miniperlmain.c +++ b/miniperlmain.c @@ -28,9 +28,11 @@ char **env; #ifdef PERL_GLOBAL_STRUCT #define PERLVAR(var,type) /**/ #define PERLVARI(var,type,init) Perl_Vars.var = init; +#define PERLVARIC(var,type,init) Perl_Vars.var = init; #include "perlvars.h" #undef PERLVAR #undef PERLVARI +#undef PERLVARC #endif PERL_SYS_INIT(&argc,&argv); |