diff options
author | Christopher Faylor <me@cgf.cx> | 2001-10-22 16:40:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-10-22 16:40:26 +0000 |
commit | 333d60984389f9e0173c60d6016ac36099686b59 (patch) | |
tree | 32c6ac1ae72472df13bd47122bd87b596575646f /newlib/libc/stdlib/system.c | |
parent | c270dc2555b88173abfd962036e99f986101158a (diff) | |
download | cygnal-333d60984389f9e0173c60d6016ac36099686b59.tar.gz cygnal-333d60984389f9e0173c60d6016ac36099686b59.tar.bz2 cygnal-333d60984389f9e0173c60d6016ac36099686b59.zip |
* 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.
Diffstat (limited to 'newlib/libc/stdlib/system.c')
-rw-r--r-- | newlib/libc/stdlib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/system.c b/newlib/libc/stdlib/system.c index cc12411e3..73c0540d9 100644 --- a/newlib/libc/stdlib/system.c +++ b/newlib/libc/stdlib/system.c @@ -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); |