Silence a warning from gcc 4.0.1 by specifying a function's parameter list is
'void' instead of just a set of empty parentheses.
diff --git a/Modules/main.c b/Modules/main.c
index dc46d55..7594a76 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -183,7 +183,7 @@
    "threading" threads have completed. */
 #include "abstract.h"
 static void
-WaitForThreadShutdown()
+WaitForThreadShutdown(void)
 {
 #ifdef WITH_THREAD
 	PyObject *result;