0.7.1.1:
[sbcl.git] / tools-for-build / grovel_headers.c
index 4e7afbe..a9adf64 100644 (file)
@@ -22,6 +22,7 @@
 #include <sys/types.h>
 #include <sys/times.h>
 #include <sys/stat.h>
+#include <sys/wait.h>
 #include <fcntl.h>
 #include <unistd.h>
 
@@ -96,5 +97,10 @@ main(int argc, char *argv[])
     defconstant("s-ifsock", S_IFSOCK);
     printf("\n");
 
+    printf(";;; for wait3(2) in run-program.lisp\n");
+    defconstant("wnohang", WNOHANG);
+    defconstant("wuntraced", WUNTRACED);
+    printf("\n");
+
     return 0;
 }