diff options
Diffstat (limited to 'lib/libc/stdio/getc_unlocked.c')
| -rw-r--r-- | lib/libc/stdio/getc_unlocked.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/stdio/getc_unlocked.c b/lib/libc/stdio/getc_unlocked.c new file mode 100644 index 00000000..1fc46d0a --- /dev/null +++ b/lib/libc/stdio/getc_unlocked.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int getc_unlocked(FILE *stream) +{ + return fgetc_unlocked(stream); +} |
