libc: io: implement putchar

This commit is contained in:
2026-07-19 13:28:33 +01:00
parent 5c9ab75dbc
commit 9e20e0032d
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int putchar(int c)
{
return fputc(c, stdout);
}