summaryrefslogtreecommitdiff
path: root/LibC/crt0.cpp
blob: a607390e14b54171194b5c35be6004e82d172e97 (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
39
40
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

extern "C" {

int main(int, char**);

int errno;
char** environ;
//bool __environ_is_malloced;

void __malloc_init();
void __stdio_init();

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

    __stdio_init();
    __malloc_init();

    int status = main(argc, argv);

    fflush(stdout);
    fflush(stderr);

    exit(status);

    return 20150614;
}

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

}