• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include <fcntl.h>
3 #include "syscall.h"
4 #include <unsupported_api.h>
5 
lchown(const char * path,uid_t uid,gid_t gid)6 int lchown(const char *path, uid_t uid, gid_t gid)
7 {
8 	UNSUPPORTED_API_VOID(LITEOS_A);
9 #ifdef SYS_lchown
10 	return syscall(SYS_lchown, path, uid, gid);
11 #else
12 	return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW);
13 #endif
14 }
15