Staging
v0.5.1
https://github.com/python/cpython
Revision 8e9972c215ea0b10f0a7516d1cded6f26296ceba authored by Andrew M. Kuchling on 22 March 2001, 15:42:08 UTC, committed by Andrew M. Kuchling on 22 March 2001, 15:42:08 UTC
1 parent 3225c1f
Raw File
Tip revision: 8e9972c215ea0b10f0a7516d1cded6f26296ceba authored by Andrew M. Kuchling on 22 March 2001, 15:42:08 UTC
Added news items for the Distutils
Tip revision: 8e9972c
unixstuff.h
/* Fudge unix isatty and fileno for RISCOS */

#include <stdio.h>

int fileno(FILE *f);
int isatty(int fn);
unsigned int unixtime(unsigned int ld,unsigned int ex);
/*long PyOS_GetLastModificationTime(char *name);*/
int unlink(char *fname);
int isdir(char *fn);
int isfile(char *fn);
int exists(char *fn);

back to top