musl/src/stdio/putchar.c
2011-02-12 00:22:29 -05:00

7 lines
69 B
C

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