3 Nov
2009
3 Nov
'09
1:33 p.m.
Revision: 92 http://trac.macosforge.org/projects/libdispatch/changeset/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: -------------- trunk/testing/dispatch_test.c Modified: trunk/testing/dispatch_test.c =================================================================== --- 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>