Staging
v0.8.1
https://github.com/python/cpython
Revision bf607aa9da0c2a0c602bdfd397a606d06d9a2119 authored by Christian Heimes on 28 March 2013, 10:42:49 UTC, committed by Christian Heimes on 28 March 2013, 10:42:49 UTC
1 parent 92acb0a
Raw File
Tip revision: bf607aa9da0c2a0c602bdfd397a606d06d9a2119 authored by Christian Heimes on 28 March 2013, 10:42:49 UTC
Fix XML vulnerability link targets.
Tip revision: bf607aa
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