aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/wait.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/syscall/wait.c')
-rw-r--r--libgo/go/syscall/wait.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libgo/go/syscall/wait.c b/libgo/go/syscall/wait.c
index c0c5cca..9555a41 100644
--- a/libgo/go/syscall/wait.c
+++ b/libgo/go/syscall/wait.c
@@ -16,6 +16,10 @@
#define WCOREDUMP(status) (((status) & 0200) != 0)
#endif
+#ifndef WIFCONTINUED
+#define WIFCONTINUED(x) 0
+#endif
+
extern _Bool Exited (uint32_t *w)
__asm__ (GOSYM_PREFIX "syscall.WaitStatus.Exited");