Clear waitpid() status arg in case there's no process to report with
WNOHANG set.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index a4268dd..9f0358e 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -1122,7 +1122,7 @@
 	object *self;
 	object *args;
 {
-	int pid, options, sts;
+	int pid, options, sts = 0;
 	if (!getargs(args, "(ii)", &pid, &options))
 		return NULL;
 	BGN_SAVE