libc: io: implement (v)fprintf

This commit is contained in:
2026-05-31 17:20:57 +01:00
parent c9a87457b8
commit d47260dd13
5 changed files with 48 additions and 17 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ int printf(const char *format, ...)
{
va_list arg;
va_start(arg, format);
int ret = vprintf(format, arg);
int ret = vfprintf(stdout, format, arg);
va_end(arg);
return ret;