From: Rich Felker Date: Sun, 10 Apr 2011 22:32:59 +0000 (-0400) Subject: add missing UTIME_* macros in sys/stat.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=4a19634f07821cf4ef0e9a1d060e148dd2a429fd;hp=196d6437dc69ede78af29d500f8ae8d650a17515 add missing UTIME_* macros in sys/stat.h --- 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 *);