Staging
v0.5.1
https://github.com/python/cpython
Revision 1fbc16d0503419161cb7bb5224ff7b9aab68828b authored by Barry Warsaw on 23 February 2012, 15:55:57 UTC, committed by Barry Warsaw on 23 February 2012, 15:55:57 UTC
1 parent b383e80
Raw File
Tip revision: 1fbc16d0503419161cb7bb5224ff7b9aab68828b authored by Barry Warsaw on 23 February 2012, 15:55:57 UTC
Bump to version 2.6.8rc1.
Tip revision: 1fbc16d
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