summaryrefslogtreecommitdiff
path: root/RISCOS/sleep.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-05-10 07:36:56 +0000
committerMartin v. Löwis <martin@v.loewis.de>2003-05-10 07:36:56 +0000
commita94568a7535de60f1144e4eea0d027b87017a4b4 (patch)
tree5a8f696ca440a296b18521be17920b48f2021e4c /RISCOS/sleep.c
parent5467d4c0e31e9db305a4899a44d7978f83e96649 (diff)
downloadcpython-git-a94568a7535de60f1144e4eea0d027b87017a4b4.tar.gz
Patch #734231: Update RiscOS support. In particular, correct
riscospath.extsep, and use os.extsep throughout.
Diffstat (limited to 'RISCOS/sleep.c')
-rw-r--r--RISCOS/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/RISCOS/sleep.c b/RISCOS/sleep.c
index 60c376845c..c85eb8651f 100644
--- a/RISCOS/sleep.c
+++ b/RISCOS/sleep.c
@@ -7,11 +7,11 @@
#include "Python.h"
-int sleep(double delay)
+int riscos_sleep(double delay)
{
os_t starttime, endtime, time; /* monotonic times (centiseconds) */
int *pollword, ret;
- bool claimed;
+ osbool claimed;
/* calculate end time */
starttime = os_read_monotonic_time();