diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-29 00:57:05 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-29 00:57:05 +0000 |
commit | ab39fa9dbf3b1a1fb7beb555653d0558a089397f (patch) | |
tree | abccfffeff91457eff4ae559229686123c8c6977 /globals.c | |
parent | 064a70d4cb44455257b8caebe159b9d93a8f9025 (diff) | |
download | perl-ab39fa9dbf3b1a1fb7beb555653d0558a089397f.tar.gz |
[asperl] fix various shenanigans with C<environ>, BC and VC builds now pass
all tests
p4raw-id: //depot/asperl@1049
Diffstat (limited to 'globals.c')
-rw-r--r-- | globals.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1444,13 +1444,9 @@ CPerlObj::ErrorNo(void) void CPerlObj::Init(void) { -#ifdef WIN32 - New(2904, environ, 1, char*); - *environ = NULL; -#endif } -#ifdef WIN32 +#ifdef WIN32 /* XXX why are these needed? */ bool do_exec(char *cmd) { |