diff options
Diffstat (limited to 'src/stat/utimensat.c')
-rw-r--r-- | src/stat/utimensat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/utimensat.c b/src/stat/utimensat.c index 730723a9..f2916f52 100644 --- a/src/stat/utimensat.c +++ b/src/stat/utimensat.c @@ -58,3 +58,11 @@ int utimensat(int fd, const char *path, const struct timespec times[2], int flag #endif return __syscall_ret(r); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |