summaryrefslogtreecommitdiff
path: root/LibC/entry.cpp
blob: c84b819b02904b8e54775d055ed9cc18e8f94004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <Kernel/Syscall.h>

extern "C" int main(int, char**);

extern "C" int _start()
{
    // FIXME: Pass appropriate argc/argv.
    main(0, nullptr);

    // Birger's birthday <3
    return 20150614;
}