945636d5e66288cd23da8b4b5fb2390ec6583fa8
[musl] / putchar.c
1 #include <stdio.h>
2
3 int putchar(int c)
4 {
5         return fputc(c, stdout);
6 }