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