diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-17 17:44:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-17 17:44:39 +0000 |
commit | 23530f503dcd13b641c1308097f5e3392ec85bf7 (patch) | |
tree | 7b20ee347939a2bcbf17eed9410a0cd1fe983f0b /sys | |
parent | 4ffeb47e1cdc4d287de5c609e3ac3797499b1be2 (diff) |
damn it, i have had it with this untested weak shit
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/include/cdefs.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc/include/cdefs.h b/sys/arch/sparc/include/cdefs.h index b16678c037f..aa48142cfb8 100644 --- a/sys/arch/sparc/include/cdefs.h +++ b/sys/arch/sparc/include/cdefs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cdefs.h,v 1.5 2000/10/16 14:25:05 deraadt Exp $ */ +/* $OpenBSD: cdefs.h,v 1.6 2000/10/17 17:44:38 deraadt Exp $ */ /* $NetBSD: cdefs.h,v 1.3 1996/12/27 20:51:31 pk Exp $ */ /* @@ -23,8 +23,6 @@ #define __warn_references(sym,msg) \ __asm__(".stabs \"" msg "\",30,0,0,0"); \ __asm__(".stabs \"_" #sym "\",1,0,0,0") -#define __weak_alias(alias,sym) \ - __asm__(".weak _" #alias "; _" #alias "= _" __STRING(sym)) #else #define __indr_reference(sym,alias) \ __asm__(".stabs \"_/**/alias\",11,0,0,0"); \ @@ -32,13 +30,10 @@ #define __warn_references(sym,msg) \ __asm__(".stabs msg,30,0,0,0"); \ __asm__(".stabs \"_/**/sym\",1,0,0,0") -#define __weak_alias(alias,sym) \ - __asm__(".weak _/**/alias; _/**/alias = _/**/sym") #endif #else #define __indr_reference(sym,alias) #define __warn_references(sym,msg) -#define __weak_alias(alias,sym) #endif #endif /* !_MACHINE_CDEFS_H_ */ |