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/clone.S | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libc/sysdeps/linux/i386/clone.S') diff --git a/libc/sysdeps/linux/i386/clone.S b/libc/sysdeps/linux/i386/clone.S index 1ba3bcc48..9a6533312 100644 --- a/libc/sysdeps/linux/i386/clone.S +++ b/libc/sysdeps/linux/i386/clone.S @@ -45,11 +45,12 @@ #define __NR_exit 1 .text -.type clone,@function; -.weak clone ; clone = __clone +.type clone,%function +.weak clone + clone = __clone -.type __clone,@function; -.globl __clone; +.global __clone +.type __clone,%function __clone: /* Sanity check arguments. */ @@ -135,8 +136,8 @@ __clone: #else /* __PIC__ */ .Lclone_error: - negl %eax - pushl %eax + negl %eax + pushl %eax call __errno_location popl %ecx movl %ecx, (%eax) @@ -146,4 +147,3 @@ __clone: #endif .size __clone,.-__clone - -- cgit v1.2.3