summaryrefslogtreecommitdiff
path: root/LibC
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-22 14:13:17 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-22 14:13:17 +0200
commit38a621c721a6aea966531b66090e918a229ed6b9 (patch)
treeaaf568dc18031292d0f7e8daf2b354ada7919525 /LibC
parent63764b3a652e7bbde9e11e7a6b1b3dab65bb54ee (diff)
downloadserenity-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.cpp2
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);