]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libgo/go/syscall/wait.c
syscall: don't assume that WIFCONTINUED is defined
[thirdparty/gcc.git] / libgo / go / syscall / wait.c
index c0c5cca39af5d8ed355444183fbbd0a4672b229a..9555a41b9865a57b264f1a7d410bd28bea84b657 100644 (file)
 #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");