putc.c 148 B

123456789101112
  1. /*
  2. * putc.c - print (or buffer) one character
  3. */
  4. /* $Header$ */
  5. #include <stdio.h>
  6. int
  7. (putc)(int c, FILE *stream)
  8. {
  9. return putc(c, stream);
  10. }