aboutsummaryrefslogtreecommitdiff
path: root/src/lib/libkogata/start.c
blob: 030423c3b3e2c0e52089ca22b6cf8cb71541575c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>

extern int main(int, char**);

void __libkogata_start() {
	// TODO : setup

	main(0, 0);
}