fputc.c 154 B

1234567
  1. /*
  2. * pANS stdio -- fputc
  3. */
  4. #include "iolib.h"
  5. int fputc(int c, FILE *f){
  6. return putc(c, f); /* This can be made more fair to _IOLBF-mode streams */
  7. }