From 075ac5a2e4afc49370b979745d00755b18a79993 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 6 Jul 2005 22:22:22 +0000 Subject: syntax touchups as suggested by Peter S. Mazinger --- libc/sysdeps/linux/i386/crt1.S | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libc/sysdeps/linux/i386/crt1.S') diff --git a/libc/sysdeps/linux/i386/crt1.S b/libc/sysdeps/linux/i386/crt1.S index afff8a5aa..a133cb9e0 100644 --- a/libc/sysdeps/linux/i386/crt1.S +++ b/libc/sysdeps/linux/i386/crt1.S @@ -56,18 +56,18 @@ #include - .text - .globl _start - .type _start,@function +.text +.global _start +.type _start,%function #if defined(__UCLIBC_CTOR_DTOR__) - .type _init,%function - .type _fini,%function +.type _init,%function +.type _fini,%function #else - .weak _init - .weak _fini +.weak _init +.weak _fini #endif - .type main,%function - .type __uClibc_main,%function +.type main,%function +.type __uClibc_main,%function _start: /* Clear the frame pointer. The ABI suggests this be done, to mark the outermost frame obviously. */ @@ -132,9 +132,9 @@ _start: .size _start,.-_start /* Define a symbol for the first piece of initialized data. */ - .data - .globl __data_start +.data +.global __data_start __data_start: - .long 0 - .weak data_start +.long 0 +.weak data_start data_start = __data_start -- cgit v1.2.3