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

void main()
{
	/* gui_init(); */
	/* gui_screen_clear(); */
	//printf("Initializing userspace...\n");
	syscall_exec("/bin/sh");

	while (1) {
	};
}