Added fchmod() and fchown()

This commit is contained in:
Ben Gras
2006-04-18 11:26:04 +00:00
parent b1e5779b1c
commit 461a4fafb1
14 changed files with 83 additions and 15 deletions

View File

@@ -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
View File

@@ -0,0 +1,7 @@
.sect .text
.extern __fchmod
.define _fchmod
.align 2
_fchmod:
jmp __fchmod

7
lib/syscall/fchown.s Executable file
View File

@@ -0,0 +1,7 @@
.sect .text
.extern __fchown
.define _fchown
.align 2
_fchown:
jmp __fchown