Staging
v0.5.1
https://github.com/python/cpython
Revision 38d335b2a1bdd2a441e958da9068d2fa08da7272 authored by Martin Panter on 20 October 2016, 03:56:48 UTC, committed by Martin Panter on 20 October 2016, 03:56:48 UTC
1 parent cb042e0
Raw File
Tip revision: 38d335b2a1bdd2a441e958da9068d2fa08da7272 authored by Martin Panter on 20 October 2016, 03:56:48 UTC
Issue #28480: Avoid label at end of compound statement --without-threads
Tip revision: 38d335b
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