diff options
Diffstat (limited to 'src/unistd/chown.c')
-rw-r--r-- | src/unistd/chown.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/chown.c b/src/unistd/chown.c index 14b03255..00bf27d1 100644 --- a/src/unistd/chown.c +++ b/src/unistd/chown.c @@ -10,3 +10,11 @@ int chown(const char *path, uid_t uid, gid_t gid) return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, 0); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |