diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-01 20:29:17 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-01 20:29:17 +0000 |
commit | 873b149f049701f76396c28e70d7cccfec0b011f (patch) | |
tree | b7671048bfedc2872fed1dc786ae53e3856465d8 /util.c | |
parent | 8babd21611073cf7ab71cbfaf139d06738ff3f27 (diff) | |
download | perl-873b149f049701f76396c28e70d7cccfec0b011f.tar.gz |
rename cygwin32 to cygwin (from Eric Fifer <EFifer@sanwaint.com>)
p4raw-id: //depot/perl@3852
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1783,7 +1783,7 @@ Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args) } #ifndef VMS /* VMS' my_setenv() is in VMS.c */ -#if !defined(WIN32) && !defined(CYGWIN32) +#if !defined(WIN32) && !defined(CYGWIN) void Perl_my_setenv(pTHX_ char *nam, char *val) { @@ -1848,8 +1848,8 @@ Perl_my_setenv(pTHX_ char *nam, char *val) #endif /* PERL_USE_SAFE_PUTENV */ } -#else /* WIN32 || CYGWIN32 */ -#if defined(CYGWIN32) +#else /* WIN32 || CYGWIN */ +#if defined(CYGWIN) /* * Save environ of perl.exe, currently Cygwin links in separate environ's * for each exe/dll. Probably should be a member of impure_ptr. @@ -2547,7 +2547,7 @@ Perl_my_pclose(pTHX_ PerlIO *ptr) } #endif /* !DOSISH */ -#if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32) +#if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN) I32 Perl_wait4pid(pTHX_ int pid, int *statusp, int flags) { |