summaryrefslogtreecommitdiff
path: root/userspace/snake.c
blob: aedf19174d918d656f8dafe6a6a5b7ed015a1fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

int main()
{
    printf("Hello I am FoolSnake 0.1\n");
    printf("setvbuf returned %i",setvbuf(stdin,NULL,_IONBF,0));

    while(1)
    {
	printf("%c",fgetc(stdin));

    }
}