Add futimens(2) and part utimensat(2)

(missing bit from previous commit)
This commit is contained in:
manu 2011-08-17 07:25:30 +00:00
parent 5b61306f9b
commit c15f33c0db
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: stat.h,v 1.61 2011/08/08 12:08:54 manu Exp $ */
/* $NetBSD: stat.h,v 1.62 2011/08/17 07:25:30 manu Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -207,6 +207,12 @@ struct stat {
#endif /* _KERNEL */
#endif /* _NETBSD_SOURCE */
/*
* Special values for utimensat and futimens
*/
#define UTIME_NOW ((1 << 30) - 1)
#define UTIME_OMIT ((1 << 30) - 2)
#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <sys/cdefs.h>
@ -242,6 +248,8 @@ int fstatat(int, const char *, struct stat *, int);
int utimensat(int, const char *, const struct timespec *, int);
#endif
int futimens(int, const struct timespec *);
__END_DECLS
#endif /* !_KERNEL && !_STANDALONE */