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

void main()
{
	printf("[~] ");

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

	syscall_halt();
}