summaryrefslogtreecommitdiff
path: root/src/user/lib/crt0.c
blob: 91bbb0585759d3b4baa89ff7456308eca0dd06f6 (plain)
1
2
3
4
5
6
7
8
9
10
#include "elfload.h"
#include <unistd.h>

int main();

__attribute__((__weak__))
void _start(void) {
	elf_selfreloc();
	exit(main());
}