mirror of
git://git.musl-libc.org/musl
synced 2025-01-02 04:22:04 +00:00
14 lines
224 B
C
14 lines
224 B
C
#include <sys/statvfs.h>
|
|
#include "syscall.h"
|
|
#include "libc.h"
|
|
|
|
int fstatvfs(int fd, struct statvfs *buf)
|
|
{
|
|
return syscall2(__NR_fstatfs, fd, (long)buf);
|
|
}
|
|
|
|
weak_alias(fstatvfs, fstatfs);
|
|
|
|
LFS64(fstatvfs);
|
|
LFS64(fstatfs);
|