musl-tcc/src/stdio/putchar.c

8 lines
89 B
C
Raw Permalink Normal View History

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