diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-22 14:13:17 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-22 14:13:17 +0200 |
commit | 38a621c721a6aea966531b66090e918a229ed6b9 (patch) | |
tree | aaf568dc18031292d0f7e8daf2b354ada7919525 /LibC | |
parent | 63764b3a652e7bbde9e11e7a6b1b3dab65bb54ee (diff) | |
download | serenity-38a621c721a6aea966531b66090e918a229ed6b9.zip |
Link "id" against the LibC.
We can now produce what should essentially be a runnable Serenity executable.
Diffstat (limited to 'LibC')
-rw-r--r-- | LibC/entry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/entry.cpp b/LibC/entry.cpp index 37bb9942ae..c84b819b02 100644 --- a/LibC/entry.cpp +++ b/LibC/entry.cpp @@ -2,7 +2,7 @@ extern "C" int main(int, char**); -extern "C" int elf_entry() +extern "C" int _start() { // FIXME: Pass appropriate argc/argv. main(0, nullptr); |