aboutsummaryrefslogtreecommitdiff
path: root/source/cstdlib.elna
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-06 10:44:15 +0200
committerEugen Wissner <belka@caraus.de>2026-07-07 00:47:59 +0200
commit470bfba45661d19558c0bf43b7819696a925ecb4 (patch)
tree44eef131a3edca1cc5489fa45851a5d5685ec530 /source/cstdlib.elna
parent8ea930783d15c04bbe9a027eaf19ca10e2cd87c0 (diff)
downloadelna-470bfba45661d19558c0bf43b7819696a925ecb4.tar.gz
Fix compiler crashing on syntax errors
after error reporting.
Diffstat (limited to 'source/cstdlib.elna')
-rw-r--r--source/cstdlib.elna4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cstdlib.elna b/source/cstdlib.elna
index 3346440..930246d 100644
--- a/source/cstdlib.elna
+++ b/source/cstdlib.elna
@@ -8,10 +8,10 @@ extern
proc free(ptr: Pointer)
extern
-proc calloc(nmemb: Word, size: Word) -> Pointer
+proc calloc(nmemb: Word; size: Word) -> Pointer
extern
-proc realloc(ptr: Pointer, size: Word) -> Pointer
+proc realloc(ptr: Pointer; size: Word) -> Pointer
extern
proc atoi(str: ^Char) -> Int