aboutsummaryrefslogtreecommitdiff
path: root/apps/init/init.c
blob: a7d07df268167ae1d6d68b7767430e14455b7f02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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);

	assert(exec("/bin/wm", "wm", NULL) == EOK);
	/* assert(exec("/bin/chess", "chess", NULL) == EOK); */

	return 0;
}