]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Made millitimer() and millisleep() global (what the heck...).
authorGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:15:32 +0000 (19:15 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:15:32 +0000 (19:15 +0000)
Modules/timemodule.c

index b1c1ce395bcf1dba691d2a5e925d5b3211731547..765c40af33cba32721a235aa6f1b5b8549e99574 100644 (file)
@@ -204,7 +204,7 @@ millitimer()
 #include <sys/types.h>
 #include <sys/time.h>
 
-static long
+long
 millitimer()
 {
        struct timeval t;
@@ -215,7 +215,6 @@ millitimer()
        
 }
 
-static
 millisleep(msecs)
        long msecs;
 {