mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
531 B
31 lines
531 B
|
15 years ago
|
#ifndef _SYS_STATVFS_H
|
||
|
|
#define _SYS_STATVFS_H
|
||
|
|
|
||
|
|
|
||
|
|
#define __NEED_fsblkcnt_t
|
||
|
|
#define __NEED_fsfilcnt_t
|
||
|
|
#include <bits/alltypes.h>
|
||
|
|
|
||
|
|
#include <bits/statfs.h>
|
||
|
|
|
||
|
|
int statvfs (const char *, struct statvfs *);
|
||
|
|
int fstatvfs (int, struct statvfs *);
|
||
|
|
|
||
|
|
#define ST_RDONLY 1
|
||
|
|
#define ST_NOSUID 2
|
||
|
|
|
||
|
|
#if 0
|
||
|
|
#define ST_NODEV 4
|
||
|
|
#define ST_NOEXEC 8
|
||
|
|
#define ST_SYNCHRONOUS 16
|
||
|
|
#define ST_MANDLOCK 64
|
||
|
|
#define ST_WRITE 128
|
||
|
|
#define ST_APPEND 256
|
||
|
|
#define ST_IMMUTABLE 512
|
||
|
|
#define ST_NOATIME 1024
|
||
|
|
#define ST_NODIRATIME 2048
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|