From 48b7c43ed1bad98200c3bdfed37d2b68ccf531ca Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 13 Jun 2025 19:03:22 -0400 Subject: usr: libc: Add printf() Signed-off-by: Ian Moffett --- lib/libc/include/stdio.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/libc/include') diff --git a/lib/libc/include/stdio.h b/lib/libc/include/stdio.h index d94990b..88e66f6 100644 --- a/lib/libc/include/stdio.h +++ b/lib/libc/include/stdio.h @@ -77,6 +77,8 @@ size_t fwrite(const void *__restrict ptr, size_t size, size_t n, FILE *__restric int vsnprintf(char *s, size_t size, const char *fmt, va_list ap); int snprintf(char *s, size_t size, const char *fmt, ...); + +int printf(const char *__restrict fmt, ...); int fputc(int c, FILE *stream); int putchar(int c); -- cgit v1.2.3