diff options
author | Guido van Rossum <guido@python.org> | 1991-04-03 19:15:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-03 19:15:32 (GMT) |
commit | 5662746a9e0545120d5a0368b465bc93aee3a069 (patch) | |
tree | 7cdb61312b693a655417be86fa9c3e843284acff /Modules | |
parent | 0c2290bd53cbb3f7deb26c24b475f173ba3fdb02 (diff) | |
download | cpython-5662746a9e0545120d5a0368b465bc93aee3a069.zip cpython-5662746a9e0545120d5a0368b465bc93aee3a069.tar.gz cpython-5662746a9e0545120d5a0368b465bc93aee3a069.tar.bz2 |
Made millitimer() and millisleep() global (what the heck...).
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 @@ 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; { |