diff options
| author | Ada Christine <adachristine18@gmail.com> | 2024-02-24 15:18:40 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2024-02-24 15:18:40 +0000 |
| commit | 0f3866a4dad84860e135855766c77e5a82737686 (patch) | |
| tree | 97e7bac72928ca6affc362577214646f942ad4d7 /api/libc | |
| parent | a61b9d1c9ee85ec08ff3b8a61e80dc33e71f3472 (diff) | |
bad reloc code silly me
Diffstat (limited to 'api/libc')
| -rw-r--r-- | api/libc/stdio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/api/libc/stdio.h b/api/libc/stdio.h index 1edec4a..63d1ad8 100644 --- a/api/libc/stdio.h +++ b/api/libc/stdio.h @@ -6,10 +6,12 @@ typedef struct FILE FILE; +extern FILE *stdin; extern FILE *stdout; extern FILE *stderr; -extern int fputc(int c, FILE *f); +int fputc(int c, FILE *f); +int fputs(const char *str, FILE *f); int vfprintf(FILE *f, const char *restrict format, va_list arguments); int fprintf(FILE *f, const char *restrict format, ...); |
