diff options
Diffstat (limited to 'libglusterfs/src/syscall.c')
-rw-r--r-- | libglusterfs/src/syscall.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libglusterfs/src/syscall.c b/libglusterfs/src/syscall.c index 4e4c6a728da..a7d4402808d 100644 --- a/libglusterfs/src/syscall.c +++ b/libglusterfs/src/syscall.c @@ -272,6 +272,16 @@ sys_utimes (const char *filename, const struct timeval times[2]) } +#if defined(HAVE_UTIMENSAT) +int +sys_utimensat (int dirfd, const char *filename, const struct timespec times[2], + int flags) +{ + return utimensat (dirfd, filename, times, flags); +} +#endif + + int sys_creat (const char *pathname, mode_t mode) { |