Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,
char**) and return an int even on PC platforms. If not, please fix
PC/utils/makesrc.c ;-P
diff --git a/PC/example_nt/example.c b/PC/example_nt/example.c
index dd8964b..63682f1 100644
--- a/PC/example_nt/example.c
+++ b/PC/example_nt/example.c
@@ -1,8 +1,7 @@
 #include "Python.h"
 
 static PyObject *
-ex_foo(self, args)
-	PyObject *self, *args;
+ex_foo(PyObject *self, PyObject *args)
 {
 	printf("Hello, world\n");
 	Py_INCREF(Py_None);
@@ -15,7 +14,7 @@
 };
 
 void
-initexample()
+initexample(void)
 {
 	Py_InitModule("example", example_methods);
 }