Staging
v0.5.1
https://github.com/python/cpython
Revision 5cb038678f27612dd577a1659e6b118578dc78f7 authored by Benjamin Peterson on 09 September 2009, 11:46:13 UTC, committed by Benjamin Peterson on 09 September 2009, 11:46:13 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74727 | benjamin.peterson | 2009-09-08 18:04:22 -0500 (Tue, 08 Sep 2009) | 1 line

  #6865 fix ref counting in initialization of pwd module
........
1 parent 8a3e345
Raw File
Tip revision: 5cb038678f27612dd577a1659e6b118578dc78f7 authored by Benjamin Peterson on 09 September 2009, 11:46:13 UTC
Merged revisions 74727 via svnmerge from
Tip revision: 5cb0386
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