diff options
author | Guido van Rossum <guido@python.org> | 2001-03-02 05:58:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-03-02 05:58:11 (GMT) |
commit | 228d80736c39e41a6b46dad211df0ba871b0c8f8 (patch) | |
tree | c15c8ecf8664d6c225b6d2f2821068c31e2302d8 /RISCOS/unixstuff.h | |
parent | c92cdf7aa770ee84a2c8e8f219fde4889e5adc92 (diff) | |
download | cpython-228d80736c39e41a6b46dad211df0ba871b0c8f8.zip cpython-228d80736c39e41a6b46dad211df0ba871b0c8f8.tar.gz cpython-228d80736c39e41a6b46dad211df0ba871b0c8f8.tar.bz2 |
RISCOS files by dschwertberger
Diffstat (limited to 'RISCOS/unixstuff.h')
-rw-r--r-- | RISCOS/unixstuff.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/RISCOS/unixstuff.h b/RISCOS/unixstuff.h new file mode 100644 index 0000000..75104c2 --- /dev/null +++ b/RISCOS/unixstuff.h @@ -0,0 +1,13 @@ +/* Fudge unix isatty and fileno for RISCOS */ + +#include <stdio.h> + +int fileno(FILE *f); +int isatty(int fn); +unsigned int unixtime(unsigned int ld,unsigned int ex); +/*long PyOS_GetLastModificationTime(char *name);*/ +int unlink(char *fname); +int isdir(char *fn); +int isfile(char *fn); +int exists(char *fn); + |