Files
30dayMakeOS/21_day/a.c
2016-05-04 16:59:32 +08:00

8 lines
78 B
C

void api_putchar(int c);
void HariMain(void)
{
api_putchar('A');
return;
}