From: Rich Felker Date: Mon, 23 Jun 2014 21:20:49 +0000 (-0400) Subject: rename dynamic linker _start to _dlstart in the stub version X-Git-Tag: v1.1.3~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=607ce882dbe3ce717ed707000f86a1c42eb77bb9;p=musl rename dynamic linker _start to _dlstart in the stub version the renaming was previously applied to all real versions of the function in commit 3fa2eb2aba8d6b54dec53e7ad4c37e17392b166f. --- diff --git a/src/ldso/start.c b/src/ldso/start.c index f6ae7cd2..3471f6ce 100644 --- a/src/ldso/start.c +++ b/src/ldso/start.c @@ -2,7 +2,7 @@ /* stub for archs that lack dynamic linker support */ -void _start() +void _dlstart() { _Exit(1); }