Staging
v0.5.1
https://github.com/python/cpython
Revision 0eac11826a6b9efed2f52b612e58046c584db573 authored by Martin v. Löwis on 15 June 2006, 06:45:05 UTC, committed by Martin v. Löwis on 15 June 2006, 06:45:05 UTC
1 parent de7f502
Raw File
Tip revision: 0eac11826a6b9efed2f52b612e58046c584db573 authored by Martin v. Löwis on 15 June 2006, 06:45:05 UTC
Make import/lookup of mbcs fail on non-Windows systems.
Tip revision: 0eac118
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