Staging
v0.8.1
https://github.com/python/cpython
Revision cf547e1b9beae7e160cef47d32f0643a9f0f70d6 authored by Thomas Wouters on 27 June 2001, 13:05:05 UTC, committed by Thomas Wouters on 27 June 2001, 13:05:05 UTC
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
1 parent ac4094b
Raw File
Tip revision: cf547e1b9beae7e160cef47d32f0643a9f0f70d6 authored by Thomas Wouters on 27 June 2001, 13:05:05 UTC
Backport of Tim's checkin 1.52:
Tip revision: cf547e1
unixstuff.h
/* 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);

back to top