minix/lib/nbsd_libc/sys-minix/statvfs.c
Thomas Veerman 92b61c816d Fix many more comiler warnings
Most warnings were harmless, some real bugs. Test set should now compile
cleanly with ack, gcc, and clang.
2011-11-28 10:07:55 +00:00

21 lines
404 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(const char *name, struct statvfs *buffer)
{
message m;
m.STATVFS_LEN = strlen(name) + 1;
m.STATVFS_NAME = (char *) __UNCONST(name);
m.STATVFS_BUF = (char *) buffer;
return(_syscall(VFS_PROC_NR, STATVFS, &m));
}