New installation mechanism, updated to 1.5
This commit is contained in:
11
mach/minix/libsys/_fstat.c
Normal file
11
mach/minix/libsys/_fstat.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <lib.h>
|
||||
#include <sys/types.h>
|
||||
#define fstat _fstat
|
||||
#include <sys/stat.h>
|
||||
|
||||
PUBLIC int fstat(fd, buffer)
|
||||
int fd;
|
||||
struct stat *buffer;
|
||||
{
|
||||
return(_callm1(FS, FSTAT, fd, 0, 0, (char *)buffer, NIL_PTR, NIL_PTR));
|
||||
}
|
||||
Reference in New Issue
Block a user