forked from Bananymous/banan-os
Kernel/LibC: Implement all chmod family functions using fchmodat
This commit is contained in:
@@ -113,8 +113,7 @@ namespace Kernel
|
||||
|
||||
BAN::ErrorOr<long> sys_pread(int fd, void* buffer, size_t count, off_t offset);
|
||||
|
||||
BAN::ErrorOr<long> sys_chmod(const char* path, mode_t mode);
|
||||
BAN::ErrorOr<long> sys_fchmod(int fildes, mode_t mode);
|
||||
BAN::ErrorOr<long> sys_fchmodat(int fd, const char* path, mode_t mode, int flag);
|
||||
BAN::ErrorOr<long> sys_chown(const char* path, uid_t uid, gid_t gid);
|
||||
|
||||
BAN::ErrorOr<long> sys_socket(int domain, int type, int protocol);
|
||||
|
||||
Reference in New Issue
Block a user