diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 22:22:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 22:22:22 +0000 |
commit | 075ac5a2e4afc49370b979745d00755b18a79993 (patch) | |
tree | 73ef91c9d9bc6ccfb1f30cf57e9e689df753f4e1 /libc/sysdeps/linux/i386/syscall.S | |
parent | 000311a8ddfa7c46aed9a07a2d3cdab5f7b14412 (diff) |
syntax touchups as suggested by Peter S. Mazinger
Diffstat (limited to 'libc/sysdeps/linux/i386/syscall.S')
-rw-r--r-- | libc/sysdeps/linux/i386/syscall.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/i386/syscall.S b/libc/sysdeps/linux/i386/syscall.S index feccc240f..b65950fb5 100644 --- a/libc/sysdeps/linux/i386/syscall.S +++ b/libc/sysdeps/linux/i386/syscall.S @@ -23,9 +23,9 @@ #include <features.h> .text - .align 4 -.globl syscall - .type syscall,@function +.global syscall +.type syscall,%function +.align 4 syscall: pushl %edi pushl %esi @@ -75,4 +75,4 @@ Lhere: popl %edi ret .Lsize: - .size syscall,.Lsize-syscall +.size syscall,.Lsize-syscall |