about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-10 18:32:59 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-10 18:32:59 -0400
commit4a19634f07821cf4ef0e9a1d060e148dd2a429fd (patch)
tree9699aab01ba4787900a7abceb5ee631d7c995369
parent196d6437dc69ede78af29d500f8ae8d650a17515 (diff)
downloadmusl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.tar.gz
musl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.tar.xz
musl-4a19634f07821cf4ef0e9a1d060e148dd2a429fd.zip
add missing UTIME_* macros in sys/stat.h
-rw-r--r--include/sys/stat.h3
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 *);