diff options
author | Mumit Khan <khan@xraylith.wisc.edu> | 1999-04-11 22:21:28 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-11 16:21:28 -0600 |
commit | 36eb4217ac1176310c53f97c252c55054cfe0722 (patch) | |
tree | 5762fa94b9cb14ed79e44b91cc1ec221a108e538 /libiberty/pexecute.c | |
parent | 82bed8708b5683a8b4de4ad4bc0f2eb31a2dbda9 (diff) | |
download | gcc-36eb4217ac1176310c53f97c252c55054cfe0722.tar.gz |
pexecute.c: Change all references to __UWIN__ to _UWIN.
* pexecute.c: Change all references to __UWIN__ to _UWIN.
* xmalloc.c: Likewise.
(xcalloc): UWIN has sbrk.
(xrealloc): Fix guard macro.
From-SVN: r26352
Diffstat (limited to 'libiberty/pexecute.c')
-rw-r--r-- | libiberty/pexecute.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libiberty/pexecute.c b/libiberty/pexecute.c index 49d04a88407..6f6a0449d09 100644 --- a/libiberty/pexecute.c +++ b/libiberty/pexecute.c @@ -230,7 +230,7 @@ pwait (pid, status, flags) #endif /* MSDOS */ -#if defined (_WIN32) && ! defined (__UWIN__) +#if defined (_WIN32) && ! defined (_UWIN) #include <process.h> @@ -419,7 +419,7 @@ pwait (pid, status, flags) #endif /* __CYGWIN__ */ } -#endif /* _WIN32 && ! __UWIN__ */ +#endif /* _WIN32 && ! _UWIN */ #ifdef OS2 @@ -602,7 +602,7 @@ pfinish () /* include for Unix-like environments but not for Dos-like environments */ #if ! defined (__MSDOS__) && ! defined (OS2) && ! defined (MPW) \ - && ! (defined (_WIN32) && ! defined (__UWIN__)) + && ! (defined (_WIN32) && ! defined (_UWIN)) extern int execv (); extern int execvp (); @@ -731,4 +731,4 @@ pwait (pid, status, flags) return pid; } -#endif /* ! __MSDOS__ && ! OS2 && ! MPW && ! (_WIN32 && ! __UWIN__) */ +#endif /* ! __MSDOS__ && ! OS2 && ! MPW && ! (_WIN32 && ! _UWIN) */ |