summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/getchar_unlocked.c
blob: e7b2fed239b39d056f99a8ac344074d09d206719 (plain)
1
2
3
4
5
6
#include <stdio.h>

int getchar_unlocked(void)
{
	return fgetc_unlocked(stdin);
}