Staging
v0.5.1
https://github.com/python/cpython
Revision 6a35bf6ca051f07edf0044278a1bf71b88111320 authored by Serhiy Storchaka on 08 October 2016, 06:58:08 UTC, committed by Serhiy Storchaka on 08 October 2016, 06:58:08 UTC
1 parent 0ea51b1
Raw File
Tip revision: 6a35bf6ca051f07edf0044278a1bf71b88111320 authored by Serhiy Storchaka on 08 October 2016, 06:58:08 UTC
Silenced compiler warnings.
Tip revision: 6a35bf6
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