Staging
v0.5.1
https://github.com/python/cpython
Revision 35113883150706f6e14f0caed99cd372fdabf33b authored by Amaury Forgeot d'Arc on 12 June 2008, 20:27:42 UTC, committed by Amaury Forgeot d'Arc on 12 June 2008, 20:27:42 UTC
1 parent b8a18ea
Raw File
Tip revision: 35113883150706f6e14f0caed99cd372fdabf33b authored by Amaury Forgeot d'Arc on 12 June 2008, 20:27:42 UTC
It seems that my VS2008 Express does not include a project in the build configuration,
Tip revision: 3511388
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