Staging
v0.5.1
https://github.com/python/cpython
Revision 1859f5b4d229ed9f79935b13332fcb72e097ea74 authored by Guido van Rossum on 24 January 2008, 17:59:56 UTC, committed by Guido van Rossum on 24 January 2008, 17:59:56 UTC
Fix issue #1303614, test67.py.
1 parent 61c2c95
Raw File
Tip revision: 1859f5b4d229ed9f79935b13332fcb72e097ea74 authored by Guido van Rossum on 24 January 2008, 17:59:56 UTC
Backport r60246.
Tip revision: 1859f5b
unixstuff.h
/* Fudge unix isatty and fileno for RISCOS */

#include <stdio.h>
#include <time.h>

int fileno(FILE *f);
int isatty(int fn);
unsigned int unixtime(unsigned int ld,unsigned int ex);
int acorntime(unsigned int *ex, unsigned int *ld, time_t ut);

int isdir(char *fn);
int isfile(char *fn);
int object_exists(char *fn);

back to top