Staging
v0.5.1
https://github.com/python/cpython
Revision 79fa98af9e3a37ee1e98094c55d8574c20c9d9a5 authored by Serhiy Storchaka on 01 June 2014, 19:13:39 UTC, committed by Serhiy Storchaka on 01 June 2014, 19:13:39 UTC
1 parent e75a555
Raw File
Tip revision: 79fa98af9e3a37ee1e98094c55d8574c20c9d9a5 authored by Serhiy Storchaka on 01 June 2014, 19:13:39 UTC
Issue #19656: Running Python with the -3 option now also warns about
Tip revision: 79fa98a
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