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

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

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

	syscall_halt();
}