musl-tcc/src/stdio/putchar.c

8 lines
89 B
C

#include <stdio.h>
#include "putc.h"
int putchar(int c)
{
return do_putc(c, stdout);
}