summaryrefslogtreecommitdiff
path: root/tnslc/utils/c_wrap_linux.tnsl
diff options
context:
space:
mode:
Diffstat (limited to 'tnslc/utils/c_wrap_linux.tnsl')
-rw-r--r--tnslc/utils/c_wrap_linux.tnsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tnslc/utils/c_wrap_linux.tnsl b/tnslc/utils/c_wrap_linux.tnsl
index 1e3155e..62c3962 100644
--- a/tnslc/utils/c_wrap_linux.tnsl
+++ b/tnslc/utils/c_wrap_linux.tnsl
@@ -1,5 +1,5 @@
# Must be included at the top of the file
-asm "extern malloc, realloc, free, printf, open, close, read, write, fseek"
+asm "extern malloc, realloc, free, printf, open, close, read, write, lseek"
{}uint8 _alert = "Alert!\n\0"
{}uint8 _dec = "%d\n\0"
@@ -218,7 +218,7 @@ asm "extern malloc, realloc, free, printf, open, close, read, write, fseek"
asm "mov rdi, r10"
asm "mov rsi, r11"
asm "mov rdx, 0" # standard value for SEEK_SET as per GNU libc
- asm "call fseek wrt ..plt"
+ asm "call lseek wrt ..plt"
# get return value
asm "mov r12, rax"