working on it
This commit is contained in:
parent
56a6e78765
commit
35a88970c2
1094 changed files with 51093 additions and 51 deletions
13
05/musl-final/src/stat/statvfs.c
Normal file
13
05/musl-final/src/stat/statvfs.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include <sys/statvfs.h>
|
||||
#include "syscall.h"
|
||||
#include "libc.h"
|
||||
|
||||
int statvfs(const char *path, struct statvfs *buf)
|
||||
{
|
||||
return syscall2(__NR_statfs, (long)path, (long)buf);
|
||||
}
|
||||
|
||||
weak_alias(statvfs, statfs);
|
||||
|
||||
LFS64(statvfs);
|
||||
LFS64(statfs);
|
Loading…
Add table
Add a link
Reference in a new issue