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