summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-06-23 17:20:49 -0400
committerRich Felker <dalias@aerifal.cx>2014-06-23 17:20:49 -0400
commit607ce882dbe3ce717ed707000f86a1c42eb77bb9 (patch)
tree64cf29eefd0ec54653321e4b90fc23b0780c9fc3
parent6ce1fade494c98414523568989fc7adea87f3402 (diff)
downloadmusl-607ce882dbe3ce717ed707000f86a1c42eb77bb9.tar.gz
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.
-rw-r--r--src/ldso/start.c2
1 files changed, 1 insertions, 1 deletions
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);
}