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