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

#include <assert.h>
#include <def.h>
#include <sys.h>

int main(int argc, char **argv)
{
	UNUSED(argc);
	UNUSED(argv);
	log("Arrived!\n");
	while (1)
		;

	assert(exec("/bin/wm", "wm", NULL) == 0);
	assert(exec("/bin/window", "test", NULL) == 0);

	return 0;
}