23 lines
407 B
C
23 lines
407 B
C
|
#include <sys/cdefs.h>
|
||
|
#include <lib.h>
|
||
|
#include "namespace.h"
|
||
|
|
||
|
#include <sys/statvfs.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#ifdef __weak_alias
|
||
|
__weak_alias(statvfs, _statvfs)
|
||
|
#endif
|
||
|
|
||
|
int statvfs(name, buffer)
|
||
|
const char *name;
|
||
|
struct statvfs *buffer;
|
||
|
{
|
||
|
message m;
|
||
|
|
||
|
m.STATVFS_LEN = strlen(name) + 1;
|
||
|
m.STATVFS_NAME = (char *) name;
|
||
|
m.STATVFS_BUF = (char *) buffer;
|
||
|
return(_syscall(VFS_PROC_NR, STATVFS, &m));
|
||
|
}
|