Added fchmod() and fchown()
This commit is contained in:
@@ -29,6 +29,8 @@ libc_FILES=" \
|
||||
execv.s \
|
||||
execve.s \
|
||||
execvp.s \
|
||||
fchown.s \
|
||||
fchmod.s \
|
||||
fcntl.s \
|
||||
fork.s \
|
||||
fpathconf.s \
|
||||
|
||||
7
lib/syscall/fchmod.s
Executable file
7
lib/syscall/fchmod.s
Executable file
@@ -0,0 +1,7 @@
|
||||
.sect .text
|
||||
.extern __fchmod
|
||||
.define _fchmod
|
||||
.align 2
|
||||
|
||||
_fchmod:
|
||||
jmp __fchmod
|
||||
7
lib/syscall/fchown.s
Executable file
7
lib/syscall/fchown.s
Executable file
@@ -0,0 +1,7 @@
|
||||
.sect .text
|
||||
.extern __fchown
|
||||
.define _fchown
|
||||
.align 2
|
||||
|
||||
_fchown:
|
||||
jmp __fchown
|
||||
Reference in New Issue
Block a user