aboutsummaryrefslogtreecommitdiff
path: root/source/cstdio.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/cstdio.elna
parent8ea930783d15c04bbe9a027eaf19ca10e2cd87c0 (diff)
downloadelna-470bfba45661d19558c0bf43b7819696a925ecb4.tar.gz
Fix compiler crashing on syntax errors
after error reporting.
Diffstat (limited to 'source/cstdio.elna')
-rw-r--r--source/cstdio.elna8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/cstdio.elna b/source/cstdio.elna
index b86014f..c589200 100644
--- a/source/cstdio.elna
+++ b/source/cstdio.elna
@@ -10,13 +10,13 @@ var
stdout*: ^FILE := extern
stderr*: ^FILE := extern
-proc fopen*(pathname: ^Char, mode: ^Char) -> ^FILE
+proc fopen*(pathname: ^Char; mode: ^Char) -> ^FILE
extern
proc fclose*(stream: ^FILE) -> Int
extern
-proc fseek*(stream: ^FILE, off: Int, whence: Int) -> Int
+proc fseek*(stream: ^FILE; off: Int; whence: Int) -> Int
extern
proc rewind*(stream: ^FILE)
@@ -28,10 +28,10 @@ extern
proc fflush*(stream: ^FILE) -> Int
extern
-proc fread*(ptr: Pointer, size: Word, nmemb: Word, stream: ^FILE) -> Word
+proc fread*(ptr: Pointer; size: Word; nmemb: Word; stream: ^FILE) -> Word
extern
-proc fwrite*(ptr: Pointer, size: Word, nitems: Word, stream: ^FILE) -> Word
+proc fwrite*(ptr: Pointer; size: Word; nitems: Word; stream: ^FILE) -> Word
extern
proc perror(s: ^Char)