mirror of git://git.musl-libc.org/musl
11 lines
155 B
C
11 lines
155 B
C
|
#ifndef _SYS_STATFS_H
|
||
|
#define _SYS_STATFS_H
|
||
|
|
||
|
#include <sys/statvfs.h>
|
||
|
|
||
|
#define statfs statvfs
|
||
|
#define fstatfs fstatvfs
|
||
|
#define f_namelen f_namemax
|
||
|
|
||
|
#endif
|