musl/src/stdio/putchar.c

7 lines
69 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <stdio.h>
int putchar(int c)
{
return fputc(c, stdout);
}