rename dynamic linker _start to _dlstart in the stub version

the renaming was previously applied to all real versions of the
function in commit 3fa2eb2aba.
This commit is contained in:
Rich Felker 2014-06-23 17:20:49 -04:00
commit 607ce882db

View file

@ -2,7 +2,7 @@
/* stub for archs that lack dynamic linker support */
void _start()
void _dlstart()
{
_Exit(1);
}