aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/crt/crt0.c
blob: 6c38474e7da8bbf6d973c9ceb17ca11eef2d1c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// MIT License, Copyright (c) 2021 Marvin Borner

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

#ifdef USER

extern int main(int, char **);

void _start(void);
void _start(void)
{
	exit(main(0, NULL));
	while (1)
		;
}

#endif