From 333d60984389f9e0173c60d6016ac36099686b59 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 22 Oct 2001 16:40:26 +0000 Subject: * 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. --- newlib/libc/posix/popen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libc/posix/popen.c') diff --git a/newlib/libc/posix/popen.c b/newlib/libc/posix/popen.c index 4fd3dd93d..d6d174d08 100644 --- a/newlib/libc/posix/popen.c +++ b/newlib/libc/posix/popen.c @@ -106,7 +106,7 @@ popen(program, type) (void)close(pdes[1]); } execl(_PATH_BSHELL, "sh", "-c", program, NULL); -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ /* On cygwin32, we may not have /bin/sh. In that case, try to find sh on PATH. */ execlp("sh", "sh", "-c", program, NULL); -- cgit v1.2.3