diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-16 11:09:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-16 11:09:02 +0000 |
commit | e4a6dbb41c73cf86b95beca2d0e2bb6f0530ef79 (patch) | |
tree | 99aa7150f9844a538faa911dc17032f40b99d0cf /libc/sysdeps/linux/bfin/vfork.S | |
parent | 726b116dcac3d23fe05dca083c5412a595be8637 (diff) |
touchup style
Diffstat (limited to 'libc/sysdeps/linux/bfin/vfork.S')
-rw-r--r-- | libc/sysdeps/linux/bfin/vfork.S | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/bfin/vfork.S b/libc/sysdeps/linux/bfin/vfork.S index 23ebfb806..d02ba88ed 100644 --- a/libc/sysdeps/linux/bfin/vfork.S +++ b/libc/sysdeps/linux/bfin/vfork.S @@ -6,11 +6,13 @@ #include <features.h> #include <asm/unistd.h> - .text - .globl _vfork - .type _vfork,STT_FUNC; - .align 4 + +.text +.global _vfork +.type _vfork,STT_FUNC; +.align 4 _vfork: p0 = __NR_vfork; excpt 0; rts; +.size _vfork,.-_vfork |