Staging
v0.5.1
https://github.com/python/cpython
Revision fac4f095c16366fac1cdad18ef23024021511e56 authored by Martin v. Löwis on 28 March 2008, 05:25:36 UTC, committed by Martin v. Löwis on 28 March 2008, 05:25:36 UTC
1 parent d183bdd
Raw File
Tip revision: fac4f095c16366fac1cdad18ef23024021511e56 authored by Martin v. Löwis on 28 March 2008, 05:25:36 UTC
Disable test that depends on #2412 being fixed.
Tip revision: fac4f09
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