diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-07 21:39:57 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-07 21:39:57 +0200 |
| commit | 79521d91b2bb85652fd29f5c44279338d55c757f (patch) | |
| tree | d3b5b73177f63fd5ff684a8aba6f7b9af84dab27 /source/cstdio.elna | |
| parent | 470bfba45661d19558c0bf43b7819696a925ecb4 (diff) | |
| download | elna-79521d91b2bb85652fd29f5c44279338d55c757f.tar.gz | |
Allow multiple parameters with same type
Diffstat (limited to 'source/cstdio.elna')
| -rw-r--r-- | source/cstdio.elna | 18 |
1 files changed, 9 insertions, 9 deletions
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. |
