rename dynamic linker _start to _dlstart in the stub version
authorRich Felker <dalias@aerifal.cx>
Mon, 23 Jun 2014 21:20:49 +0000 (17:20 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 23 Jun 2014 21:20:49 +0000 (17:20 -0400)
the renaming was previously applied to all real versions of the
function in commit 3fa2eb2aba8d6b54dec53e7ad4c37e17392b166f.

src/ldso/start.c

index f6ae7cd..3471f6c 100644 (file)
@@ -2,7 +2,7 @@
 
 /* stub for archs that lack dynamic linker support */
 
-void _start()
+void _dlstart()
 {
        _Exit(1);
 }