From: Guido van Rossum Date: Wed, 3 Apr 1991 19:15:32 +0000 (+0000) Subject: Made millitimer() and millisleep() global (what the heck...). X-Git-Tag: v0.9.8~1011 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5662746a9e0545120d5a0368b465bc93aee3a069;p=thirdparty%2FPython%2Fcpython.git Made millitimer() and millisleep() global (what the heck...). --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index b1c1ce395bcf..765c40af33cb 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -204,7 +204,7 @@ millitimer() #include #include -static long +long millitimer() { struct timeval t; @@ -215,7 +215,6 @@ millitimer() } -static millisleep(msecs) long msecs; {