diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 11:49:25 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 11:49:25 +0000 |
commit | ac5c734f32ccd9787762253192de0d559609abae (patch) | |
tree | 9a652b97ea5faa3c9379b58275b5a101e2076b90 /win32/perlhost.h | |
parent | a2093a06980c0ef77ac4631e8b8f383be904f06a (diff) | |
download | perl-ac5c734f32ccd9787762253192de0d559609abae.tar.gz |
support win32_putenv()
p4raw-id: //depot/perl@2898
Diffstat (limited to 'win32/perlhost.h')
-rw-r--r-- | win32/perlhost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h index 21908098a5..e514bf1342 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -88,7 +88,7 @@ public: }; virtual int Putenv(const char *envstring, int &err) { - return putenv(envstring); + return win32_putenv(envstring); }; virtual char* LibPath(char *pl) { |