From 79521d91b2bb85652fd29f5c44279338d55c757f Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 7 Jul 2026 21:39:57 +0200 Subject: Allow multiple parameters with same type --- source/cstdio.elna | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'source/cstdio.elna') diff --git a/source/cstdio.elna b/source/cstdio.elna index c589200..95283a1 100644 --- a/source/cstdio.elna +++ b/source/cstdio.elna @@ -10,37 +10,37 @@ 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 +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) extern -proc ftell*(stream: ^FILE) -> Int +proc ftell*(stream: ^FILE): Int extern -proc fflush*(stream: ^FILE) -> Int +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) extern -proc puts(s: ^Char) -> Int +proc puts(s: ^Char): Int extern -proc putchar(c: Int) -> Int +proc putchar(c: Int): Int extern end. -- cgit v1.2.3