Staging
v0.5.1
https://github.com/python/cpython
Revision 63a976e114f4c20656ca211b7f545b329d1b6675 authored by Barry Warsaw on 14 April 2009, 13:16:19 UTC, committed by Barry Warsaw on 14 April 2009, 13:16:19 UTC
1 parent c3e0d04
Raw File
Tip revision: 63a976e114f4c20656ca211b7f545b329d1b6675 authored by Barry Warsaw on 14 April 2009, 13:16:19 UTC
Bumping to 2.6.2 (final).
Tip revision: 63a976e
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