Mike Frysinger преди 20 години
родител
ревизия
60a3f7d7d8
променени са 2 файла, в които са добавени 14 реда и са изтрити 13 реда
  1. 6 4
      libc/sysdeps/linux/x86_64/crti.S
  2. 8 9
      libc/sysdeps/linux/x86_64/crtn.S

+ 6 - 4
libc/sysdeps/linux/x86_64/crti.S

@@ -1,14 +1,16 @@
 /* glibc's sysdeps/x86_64/elf/initfini.c used for reference [PROLOG] */
 
+
+
 .section .init
-.globl _init
-.type	_init, @function
+.global  _init
+.type    _init, @function
 _init:
 	subq	$8, %rsp
 
 
 .section .fini
-.globl _fini
-.type	_fini, @function
+.global  _fini
+.type    _fini, @function
 _fini:
 	subq	$8, %rsp

+ 8 - 9
libc/sysdeps/linux/x86_64/crtn.S

@@ -2,18 +2,17 @@
 
 .file	"initfini.c"
 
-
 .section .init
-.globl _init
-.type	_init, @function
-	addq	$8, %rsp
+.global  _init
+.type    _init, @function
+	addq $8, %rsp
 	ret
-.size	_init, .-_init
+.size _init,.-_init
 
 
 .section .fini
-.globl _fini
-.type	_fini, @function
-	addq	$8, %rsp
+.global  _fini
+.type    _fini, @function
+	addq $8, %rsp
 	ret
-.size	_fini, .-_fini
+.size _fini, .-_fini