diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-24 19:57:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-24 19:57:00 +0000 |
commit | 92430836ea09f9b7278542b87426c8ceb0aa0864 (patch) | |
tree | 180c8f45a435cee05f71f972f8e6eaba21b044a4 /libc/sysdeps/linux/m68k | |
parent | 11229301b2a0d8efae9abc552dce40c76e120786 (diff) | |
download | uClibc-alpine-92430836ea09f9b7278542b87426c8ceb0aa0864.tar.bz2 uClibc-alpine-92430836ea09f9b7278542b87426c8ceb0aa0864.tar.xz |
Paul Brook reports: fix build failure with newer binutils
Diffstat (limited to 'libc/sysdeps/linux/m68k')
-rw-r--r-- | libc/sysdeps/linux/m68k/clone.S | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/m68k/clone.S b/libc/sysdeps/linux/m68k/clone.S index f2e0122da..916488146 100644 --- a/libc/sysdeps/linux/m68k/clone.S +++ b/libc/sysdeps/linux/m68k/clone.S @@ -5,6 +5,7 @@ and invokes a function in the right context after its all over. */ #define _ERRNO_H +#include <features.h> #include <bits/errno.h> #include <sys/syscall.h> @@ -12,9 +13,6 @@ .text .align 4 -.type clone,@function -.globl clone; -clone: .type __clone,@function .globl __clone; __clone: @@ -82,4 +80,3 @@ thread_start: #else .set clone,__clone #endif - |