fputc.c 142 B

1234567891011
  1. #include "stdio_impl.h"
  2. int fputc(int c, FILE *f)
  3. {
  4. FLOCK(f);
  5. c = putc_unlocked(c, f);
  6. FUNLOCK(f);
  7. return c;
  8. }
  9. weak_alias(fputc, putc);