b87af1c325
This patch changes the NBSD libc stat implemenation and adds fstat (and headers), taken from current libc. It also adds weaks alias to functions in the resolver that were removed from public use in NetBSD but that are still used by Minix, and fixes a NetBSD non-REENTRANT bug in in gen/initdir.c.
19 lines
323 B
C
19 lines
323 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/statfs.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fstatfs, _fstatfs)
|
|
#endif
|
|
|
|
int fstatfs(int fd, struct statfs *buffer)
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = fd;
|
|
m.m1_p1 = (char *) buffer;
|
|
return(_syscall(VFS_PROC_NR, FSTATFS, &m));
|
|
}
|