musl-tcc/src/stdio/putchar.c

8 lines
89 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdio.h>
#include "putc.h"
int putchar(int c)
{
return do_putc(c, stdout);
}