getchar_unlocked.c 86 B

123456
  1. #include "stdio_impl.h"
  2. int getchar_unlocked(void)
  3. {
  4. return getc_unlocked(stdin);
  5. }