summaryrefslogtreecommitdiff
path: root/LibC/crt0.cpp
blob: ab6a3ebfe205f7cb1eda8251d3e46dba65fb6558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

extern "C" {

int main(int, char**);

int errno;
char** environ;

void __malloc_init();
void __stdio_init();

int _start(int argc, char** argv, char** env)
{
    errno = 0;
    environ = env;

    __stdio_init();
    __malloc_init();

    int status = main(argc, argv);

    fflush(stdout);
    fflush(stderr);

    exit(status);

    return 20150614;
}

[[noreturn]] void __cxa_pure_virtual()
{
    assert(false);
}

}