repo.or.cz
/
minix3-old.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added lance entry to drivers.conf.
[minix3-old.git]
/
lib
/
posix
/
_fstat.c
blob
5143fbc1bf00b09b54b7210245605dd60dfa1abf
1
#include <lib.h>
2
#define fstat _fstat
3
#include <sys/stat.h>
4
5
PUBLIC
int
fstat
(
fd
,
buffer
)
6
int
fd
;
7
struct
stat
*
buffer
;
8
{
9
message m
;
10
11
m
.
m1_i1
=
fd
;
12
m
.
m1_p1
= (
char
*)
buffer
;
13
return
(
_syscall
(
FS
,
FSTAT
, &
m
));
14
}