Made millitimer() and millisleep() global (what the heck...).
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index b1c1ce3..765c40a 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -204,7 +204,7 @@
 #include <sys/types.h>
 #include <sys/time.h>
 
-static long
+long
 millitimer()
 {
 	struct timeval t;
@@ -215,7 +215,6 @@
 	
 }
 
-static
 millisleep(msecs)
 	long msecs;
 {