1
0

putchar.c 69 B

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