summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-09 12:14:15 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-09 12:14:15 (GMT)
commita320fd308c9c8ac4775f83d2b8edb9af90192741 (patch)
tree20841aeb0007baa8fa987efd6f0499baab36b8fd /Modules/timemodule.c
parentb6fe7048e710db1678db53c0b088f43abdb8c95f (diff)
downloadcpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.zip
cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.gz
cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.bz2
changes for MPW
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c4
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;