diff options
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h index 000672e3bc..7debf9f9cc 100644 --- a/include/time.h +++ b/include/time.h @@ -146,6 +146,18 @@ extern int __clock_getres64 (clockid_t clock_id, libc_hidden_proto (__clock_getres64); #endif +#if __TIMESIZE == 64 +# define __utimensat64 __utimensat +#else +extern int __utimensat64 (int fd, const char *file, + const struct __timespec64 tsp[2], int flags); +libc_hidden_proto (__utimensat64); +#endif + +extern int __utimensat64_helper (int fd, const char *file, + const struct __timespec64 tsp[2], int flags); +libc_hidden_proto (__utimensat64_helper); + /* Compute the `struct tm' representation of T, offset OFFSET seconds east of UTC, and store year, yday, mon, mday, wday, hour, min, sec into *TP. |