aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/programs/sh.c
blob: 8da493e32d7bdf964cc3e333a80a1c99a8ddfcbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <syscall.h>
#include <stdio.h>

void main()
{
	printf("Test for printf! %d\n", 42);
	printf("[~] ");

	while (1) {
		putch(getch());
	}

	syscall_halt();
}