diff options
Diffstat (limited to 'source/cstdio.elna')
| -rw-r--r-- | source/cstdio.elna | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/cstdio.elna b/source/cstdio.elna index 95283a1..346d931 100644 --- a/source/cstdio.elna +++ b/source/cstdio.elna @@ -34,6 +34,9 @@ extern proc fwrite*(ptr: Pointer; size: Word; nitems: Word; stream: ^FILE): Word extern +proc fputc(c: Int; stream: ^FILE): Word +extern + proc perror(s: ^Char) extern @@ -43,4 +46,13 @@ extern proc putchar(c: Int): Int extern +proc sprintf(str: Pointer; format: ^Char; number: Word): Int +extern + +proc fprintf(stream: Pointer; format: ^Char; number: Word): Int +extern + +proc fdopen(fildes: Int; mode: ^Char): Pointer +extern + end. |
