putchar.c 159 B

123456789101112
  1. /*
  2. * putchar.c - print (or buffer) a character on the standard output stream
  3. */
  4. /* $Id$ */
  5. #include <stdio.h>
  6. int
  7. (putchar)(int c)
  8. {
  9. return putchar(c);
  10. }