diff options
Diffstat (limited to 'src/unistd/fdatasync.c')
-rw-r--r-- | src/unistd/fdatasync.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/fdatasync.c b/src/unistd/fdatasync.c index 3895ae53..10454721 100644 --- a/src/unistd/fdatasync.c +++ b/src/unistd/fdatasync.c @@ -5,3 +5,11 @@ int fdatasync(int fd) { return syscall_cp(SYS_fdatasync, fd); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |