* lib/sys_wait.in.h: Include <signal.h>, for SIGTERM.
+2010-09-26 Simon Josefsson <simon@josefsson.org>
+
+ stdlib, sys_wait: Avoid compilation error on mingw.
+ * lib/sys_wait.in.h: Include <signal.h>, for SIGTERM.
+
2010-09-26 Bruno Haible <bruno@clisp.org>
stdlib tests: Avoid code duplication.
#else
/* Native Windows API. */
-# include <process.h>
+# include <process.h> /* for _cwait, WAIT_CHILD */
+# include <signal.h> /* for SIGTERM */
# define waitpid(pid,statusp,options) _cwait (statusp, pid, WAIT_CHILD)