aboutsummaryrefslogtreecommitdiff
path: root/apps/window.c
blob: 08c42630d436470c1d4f49f85692be65e29d23a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// MIT License, Copyright (c) 2021 Marvin Borner

#include <assert.h>
#include <gui.h>
#include <print.h>

int main(void)
{
	u32 win;
	assert((win = gui_new_window()) > 0);
	gui_loop();
	return 0;
}