mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
38a621c721
We can now produce what should essentially be a runnable Serenity executable.
12 lines
206 B
C++
12 lines
206 B
C++
#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;
|
|
}
|