aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/getchar.c
blob: 754080fc67e26291ef7f891f3c0c09eb1cea6270 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "getc.h"

int getchar(void)
{
	return do_getc(stdin);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif