diff options
Diffstat (limited to 'src/unistd/fchownat.c')
-rw-r--r-- | src/unistd/fchownat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/fchownat.c b/src/unistd/fchownat.c index 62457a3e..189f1adc 100644 --- a/src/unistd/fchownat.c +++ b/src/unistd/fchownat.c @@ -5,3 +5,11 @@ int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag) { return syscall(SYS_fchownat, fd, path, uid, gid, flag); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |