Use llseek syscall instead of lseek.

This commit is contained in:
2018-05-15 09:54:22 +03:00
parent 2c3cd9c7c1
commit cff6d94c58
3 changed files with 22 additions and 9 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ SYS_READ = 3
SYS_WRITE = 4
SYS_OPEN = 5
SYS_CLOSE = 6
SYS_LSEEK = 19
;SYS_LSEEK = 19
SYS_LLSEEK = 140
SEEK_SET = 0
SEEK_CUR = 1