diff options
Diffstat (limited to 'misc/futimes.c')
-rw-r--r-- | misc/futimes.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/futimes.c b/misc/futimes.c index 3ffa40b0b1..c8756a01d2 100644 --- a/misc/futimes.c +++ b/misc/futimes.c @@ -30,3 +30,12 @@ __futimes (int fd, const struct timeval tvp[2]) weak_alias (__futimes, futimes) stub_warning (futimes) + +int +__futimes64 (int fd, const struct __timeval64 tvp[2]) +{ + __set_errno (ENOSYS); + return -1; +} + +stub_warning (__futimes64) |