Revision
92
Author
robert@fledge.watson.org
Date
2009-11-03 05:33:05 -0800 (Tue, 03 Nov 2009)

Log Message

waitpid(2) requires includes of sys/types.h and sys/wait.h on some
platforms.

Modified Paths

Diff

Modified: trunk/testing/dispatch_test.c (91 => 92)


--- trunk/testing/dispatch_test.c	2009-11-02 23:27:56 UTC (rev 91)
+++ trunk/testing/dispatch_test.c	2009-11-03 13:33:05 UTC (rev 92)
@@ -1,3 +1,6 @@
+#include <sys/types.h>
+#include <sys/wait.h>
+
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>