diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-07-12 20:41:30 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-07-12 20:41:30 -0400 |
commit | 062015204a192dd6ab9663abcc3171b9106d1749 (patch) | |
tree | 98818e41c8faccc35298f1792be3a1f431789773 /include/sys/statvfs.h | |
parent | 4f35eb7591031a1e5ef9828f9304361f282f28b9 (diff) | |
download | musl-062015204a192dd6ab9663abcc3171b9106d1749.tar.gz musl-062015204a192dd6ab9663abcc3171b9106d1749.tar.xz musl-062015204a192dd6ab9663abcc3171b9106d1749.zip |
add ST_RELATIME to statvfs.h
Diffstat (limited to 'include/sys/statvfs.h')
-rw-r--r-- | include/sys/statvfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/statvfs.h b/include/sys/statvfs.h index e0839eca..ef07d684 100644 --- a/include/sys/statvfs.h +++ b/include/sys/statvfs.h @@ -42,6 +42,7 @@ int fstatvfs (int, struct statvfs *); #define ST_IMMUTABLE 512 #define ST_NOATIME 1024 #define ST_NODIRATIME 2048 +#define ST_RELATIME 4096 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE) #define statvfs64 statvfs |