Fixed incorrect const values
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
read(fd int, buffer *any, length int) -> int {
|
||||
read(fd int, buffer *byte, length int) -> int {
|
||||
return syscall(0, fd, buffer, length)
|
||||
}
|
||||
|
||||
write(fd int, buffer *any, length int) -> int {
|
||||
write(fd int, buffer *byte, length int) -> int {
|
||||
return syscall(1, fd, buffer, length)
|
||||
}
|
||||
|
||||
@ -14,16 +14,16 @@ close(fd int) -> int {
|
||||
return syscall(3, fd)
|
||||
}
|
||||
|
||||
mmap(address int, length int, protection int, flags int) -> *any {
|
||||
mmap(address int, length uint, protection int, flags int) -> *any {
|
||||
return syscall(9, address, length, protection, flags)
|
||||
}
|
||||
|
||||
munmap(address *any, length int) -> int {
|
||||
munmap(address *any, length uint) -> int {
|
||||
return syscall(11, address, length)
|
||||
}
|
||||
|
||||
clone(flags int, stack *any) -> int {
|
||||
return syscall(56, flags, stack)
|
||||
clone(flags uint, stack *any, parent *int, child *int, tls uint) -> int {
|
||||
return syscall(56, flags, stack, parent, child, tls)
|
||||
}
|
||||
|
||||
fork() -> int {
|
||||
|
Reference in New Issue
Block a user