aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
blob: 08f2d803a0768f02b304dee7c5d7f7d2144b9118 (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)
{
	(void)argc;
	log("%s loaded\n", argv[0]);

	int wm = exec("/bin/wm", "wm", argv[1], NULL);
	/* int exec = exec("/bin/exec", "test", NULL); */

	return wm; //+ exec;
}