putchar_unlocked.c 91 B

123456
  1. #include "stdio_impl.h"
  2. int putchar_unlocked(int c)
  3. {
  4. return putc_unlocked(c, stdout);
  5. }