aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
blob: f854a81d969369e05342738d008a9fdb7a45eebc (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 <def.h>
#include <net.h>
#include <print.h>
#include <str.h>
#include <sys.h>

int main(int argc, char **argv)
{
	UNUSED(argc);
	UNUSED(argv);

	int wm = exec("/bin/wm", "wm", NULL);
	/* int test = exec("/bin/window", "test", NULL); */

	return wm; //+ test;
}