From 470bfba45661d19558c0bf43b7819696a925ecb4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 6 Jul 2026 10:44:15 +0200 Subject: Fix compiler crashing on syntax errors after error reporting. --- source/cstdlib.elna | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cstdlib.elna') 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 -- cgit v1.2.3