getc_unlocked.c 176 B

123456789
  1. #include "stdio_impl.h"
  2. int (getc_unlocked)(FILE *f)
  3. {
  4. return getc_unlocked(f);
  5. }
  6. weak_alias (getc_unlocked, fgetc_unlocked);
  7. weak_alias (getc_unlocked, _IO_getc_unlocked);