repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix three PyChecker-detected gotchas.
[python/dscho.git]
/
RISCOS
/
unixstuff.h
blob
75104c29832be5e4249b3d51c82d396bb807bc3b
1
/* Fudge unix isatty and fileno for RISCOS */
2
3
#include <stdio.h>
4
5
int
fileno
(
FILE
*
f
);
6
int
isatty
(
int
fn
);
7
unsigned int
unixtime
(
unsigned int
ld
,
unsigned int
ex
);
8
/*long PyOS_GetLastModificationTime(char *name);*/
9
int
unlink
(
char
*
fname
);
10
int
isdir
(
char
*
fn
);
11
int
isfile
(
char
*
fn
);
12
int
exists
(
char
*
fn
);
13