Files
photon/libc/stdio/putchar.c

7 lines
72 B
C
Raw Normal View History

2020-08-09 15:22:23 +01:00
#include <stdio.h>
int putchar(int c)
{
return fputc(c, stdout);
}