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