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

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

int main(int argc, char **argv)
{
	printf("ARGC: %d\n", argc);
	printf("[%s loaded]\n", argv[0]);

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

	return wm + mandelbrot;
}