aboutsummaryrefslogtreecommitdiff
path: root/libiberty/pexecute.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-11 22:21:28 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-11 22:21:28 +0000
commit16b8e80fd5c645838305de208fefe0e8b17c2c23 (patch)
tree5762fa94b9cb14ed79e44b91cc1ec221a108e538 /libiberty/pexecute.c
parentd2506df086ebc24d7ca2b1b6ee1290d92c500ec8 (diff)
* pexecute.c: Change all references to __UWIN__ to _UWIN.
* xmalloc.c: Likewise. (xcalloc): UWIN has sbrk. (xrealloc): Fix guard macro. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26352 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/pexecute.c')
-rw-r--r--libiberty/pexecute.c8
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) */