hurd: Fix exposition of UTIME_NOW, UTIME_OMIT

* sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
	(UTIME_NOW, UTIME_OMIT): Define macros.
This commit is contained in:
Samuel Thibault 2018-04-02 17:07:11 +02:00
parent fb03b04b7f
commit fa9e15558d
2 changed files with 8 additions and 5 deletions

View File

@ -223,6 +223,9 @@
* README: Remove the mention of out-of-tree patches needed for
GNU/Hurd.
* sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
(UTIME_NOW, UTIME_OMIT): Define macros.
2018-04-02 Agustina Arzille <avarzille@riseup.net>
Amos Jeffries <squid3@treenet.co.nz>
David Michael <fedora.dm0@gmail.com>

View File

@ -244,11 +244,6 @@ struct stat64
# define SF_NOUNLINK 0x00100000 /* file may not be removed or renamed */
# define SF_SNAPSHOT 0x00200000 /* snapshot inode */
#ifdef __USE_ATFILE
# define UTIME_NOW -1 /* corresponds to the current time */
# define UTIME_OMIT -2 /* target time is omitted */
#endif
__BEGIN_DECLS
/* Set file flags for FILE to FLAGS. */
@ -260,4 +255,9 @@ extern int fchflags (int __fd, unsigned long int __flags) __THROW;
__END_DECLS
#endif
#ifdef __USE_ATFILE
# define UTIME_NOW -1 /* corresponds to the current time */
# define UTIME_OMIT -2 /* target time is omitted */
#endif
#endif /* bits/stat.h */