diff options
author | jasone <jasone@FreeBSD.org> | 2000-03-16 02:14:41 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-03-16 02:14:41 +0000 |
commit | 23c4215cb0e4dd315f6b1873c3004247d76e088a (patch) | |
tree | a5db3308f49350af42e8ac76a1fad86691cde069 /lib/libc/i386/SYS.h | |
parent | d073c75df5afca85c621a7f89f1e1ff45a1835b4 (diff) | |
download | FreeBSD-src-23c4215cb0e4dd315f6b1873c3004247d76e088a.zip FreeBSD-src-23c4215cb0e4dd315f6b1873c3004247d76e088a.tar.gz |
Take care to avoid having "strong" and "weak" symbols of the same name in
libc_r.
Diffstat (limited to 'lib/libc/i386/SYS.h')
-rw-r--r-- | lib/libc/i386/SYS.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libc/i386/SYS.h b/lib/libc/i386/SYS.h index 155672f..cadbecb 100644 --- a/lib/libc/i386/SYS.h +++ b/lib/libc/i386/SYS.h @@ -73,10 +73,6 @@ */ #define PSYSCALL(x) 2: PIC_PROLOGUE; jmp PIC_PLT(HIDENAME(cerror)); \ ENTRY(__CONCAT(_thread_sys_,x)); \ - .weak CNAME(__CONCAT(_,x)); \ - .set CNAME(__CONCAT(_,x)),CNAME(__CONCAT(_thread_sys_,x));\ - .weak CNAME(x); \ - .set CNAME(x),CNAME(__CONCAT(_,x)); \ lea __CONCAT(SYS_,x),%eax; KERNCALL; jb 2b #define PRSYSCALL(x) PSYSCALL(x); ret #define PPSEUDO(x,y) ENTRY(__CONCAT(_thread_sys_,x)); \ |