Chromium Code Reviews| Index: fusl/src/stdio/getc_unlocked.c |
| diff --git a/fusl/src/stdio/getc_unlocked.c b/fusl/src/stdio/getc_unlocked.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b38dad1672b8ae33bfeb1ee7d4a21e9d84c208ad |
| --- /dev/null |
| +++ b/fusl/src/stdio/getc_unlocked.c |
| @@ -0,0 +1,9 @@ |
| +#include "stdio_impl.h" |
| + |
| +int (getc_unlocked)(FILE *f) |
| +{ |
| + return getc_unlocked(f); |
| +} |
| + |
| +weak_alias (getc_unlocked, fgetc_unlocked); |
| +weak_alias (getc_unlocked, _IO_getc_unlocked); |