mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22:15 +00:00
at the same time, make struct statfs match the traditional definition and make it more useful, especially the fsid_t stuff.
16 lines
226 B
C
16 lines
226 B
C
#ifndef _SYS_STATFS_H
|
|
#define _SYS_STATFS_H
|
|
|
|
#include <sys/statvfs.h>
|
|
|
|
typedef struct {
|
|
int val[2];
|
|
} fsid_t;
|
|
|
|
#include <bits/statfs.h>
|
|
|
|
int statfs (const char *, struct statfs *);
|
|
int fstatfs (int, struct statfs *);
|
|
|
|
#endif
|