aboutsummaryrefslogtreecommitdiff
path: root/source/cstdlib.elna
diff options
context:
space:
mode:
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