mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 08:32:04 +02:00
13 lines
209 B
C++
13 lines
209 B
C++
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" int main(int, char**);
|
|
|
|
extern "C" int elf_entry()
|
|
{
|
|
// FIXME: Pass appropriate argc/argv.
|
|
main(0, nullptr);
|
|
|
|
// Birger's birthday <3
|
|
return 20150614;
|
|
}
|