summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 11:26:25 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 11:26:25 (GMT)
commit770e4042db8a1c277b5d9b678cf6045a7aa2bd33 (patch)
tree78206196a4b6d663865eac0050f0ea3ba5b2fa16 /Modules
parenteb61b6ebb60fec3cc8824be50a2d14b34e25d85d (diff)
downloadcpython-770e4042db8a1c277b5d9b678cf6045a7aa2bd33.zip
cpython-770e4042db8a1c277b5d9b678cf6045a7aa2bd33.tar.gz
cpython-770e4042db8a1c277b5d9b678cf6045a7aa2bd33.tar.bz2
ANSIfy yet another hidden function definition.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/timemodule.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 005189a..cb6f54e 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -709,12 +709,7 @@ floattime(void)
set an exception; else return 0. */
static int
-#ifdef MPW
floatsleep(double secs)
-#else
- floatsleep(secs)
- double secs;
-#endif /* MPW */
{
/* XXX Should test for MS_WIN32 first! */
#if defined(HAVE_SELECT) && !defined(__BEOS__)