mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 15:05:07 +00:00
12 lines
209 B
C++
12 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;
|
|
}
|