소스 검색

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.
Rich Felker 11 년 전
부모
커밋
607ce882db
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/ldso/start.c

+ 1 - 1
src/ldso/start.c

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