aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
blob: de87798c7f179bcb468004ba054e1089f15d87fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// MIT License, Copyright (c) 2020 Marvin Borner

#include <conv.h>
#include <def.h>
#include <gui.h>
#include <mem.h>
#include <print.h>
#include <sys.h>
#include <vesa.h>

void main(struct vbe *vbe)
{
	print("Init loaded.\n");
	int a = exec("/wm", vbe);

	if (a)
		exit();
}