diff options
author | Guido van Rossum <guido@python.org> | 1995-03-09 12:14:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-09 12:14:15 (GMT) |
commit | a320fd308c9c8ac4775f83d2b8edb9af90192741 (patch) | |
tree | 20841aeb0007baa8fa987efd6f0499baab36b8fd /Modules/timemodule.c | |
parent | b6fe7048e710db1678db53c0b088f43abdb8c95f (diff) | |
download | cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.zip cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.gz cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.bz2 |
changes for MPW
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 0702f27..90a10eb 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -336,8 +336,12 @@ floattime() set an exception; else return 0. */ static int +#ifdef MPW +floatsleep(double secs) +#else floatsleep(secs) double secs; +#endif /* MPW */ { #ifdef HAVE_SELECT struct timeval t; |