diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-10 18:32:59 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-10 18:32:59 -0400 |
commit | 4a19634f07821cf4ef0e9a1d060e148dd2a429fd (patch) | |
tree | 9699aab01ba4787900a7abceb5ee631d7c995369 /include | |
parent | 196d6437dc69ede78af29d500f8ae8d650a17515 (diff) | |
download | musl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.tar.gz musl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.tar.xz musl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.zip |
add missing UTIME_* macros in sys/stat.h
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/stat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index 2eb6fb0c..ec69f54d 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -65,6 +65,9 @@ extern "C" { #define S_IRWXO 0007 #endif +#define UTIME_NOW 0x3fffffff +#define UTIME_OMIT 0x3ffffffe + int stat(const char *, struct stat *); int fstat(int, struct stat *); int lstat(const char *, struct stat *); |