* libc/posix/execvp.c: Remove obsolete CYGWIN32 considerations throughout.

* signal.h: Change comment to reflect __CYGWIN__ rather than __CYGWIN32__.
* popen.c (popen): Use __CYGWIN_ rather than __CYGWIN32__.
* system.c (_system_r): Ditto.
This commit is contained in:
Christopher Faylor
2001-10-22 16:40:26 +00:00
parent c270dc2555
commit 333d609843
5 changed files with 11 additions and 24 deletions

View File

@ -81,7 +81,7 @@ _system_r (ptr, s)
For now we always return 0 and leave it to each target to explicitly
handle otherwise (this can always be relaxed in the future). */
#if defined (unix) || defined (__CYGWIN32__)
#if defined (unix) || defined (__CYGWIN__)
if (s == NULL)
return 1;
return do_system (ptr, s);