diff options
Diffstat (limited to 'io/tst-utimes.c')
-rw-r--r-- | io/tst-utimes.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/io/tst-utimes.c b/io/tst-utimes.c index 991ab0c7d3..e88efff45b 100644 --- a/io/tst-utimes.c +++ b/io/tst-utimes.c @@ -22,13 +22,17 @@ #include <sys/time.h> #include <time.h> +#ifndef struct_stat +# define struct_stat struct stat64 +#endif + static int test_utimes_helper (const char *file, int fd, const struct timeval *tv) { int result = utimes (file, tv); TEST_VERIFY_EXIT (result == 0); - struct stat64 st; + struct_stat st; xfstat (fd, &st); /* Check if seconds for atime match */ |