diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-24 20:46:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-24 20:46:50 +0000 |
commit | 0bd81c002fb213b540eb7ec7e06421b7a32dacee (patch) | |
tree | 9daa65bef23768b6d027cc7566aaeab8909dce12 /sys/arch/m88k/include/cdefs.h | |
parent | a44bf7617d9b5f641c1a92ddbb461af565b9f9b9 (diff) |
add lint-specific hacks. at the same time, clean out a lot of ancient
cruft for old compilers and environments. there may be a 2nd round of
polishing after this; ok miod and others
Diffstat (limited to 'sys/arch/m88k/include/cdefs.h')
-rw-r--r-- | sys/arch/m88k/include/cdefs.h | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/sys/arch/m88k/include/cdefs.h b/sys/arch/m88k/include/cdefs.h index 174ff6cdbf7..0e378c17536 100644 --- a/sys/arch/m88k/include/cdefs.h +++ b/sys/arch/m88k/include/cdefs.h @@ -1,5 +1,4 @@ -/* $OpenBSD: cdefs.h,v 1.1 2004/04/26 12:34:05 miod Exp $ */ -/* $NetBSD: cdefs.h,v 1.2 1995/03/23 20:10:48 jtc Exp $ */ +/* $OpenBSD: cdefs.h,v 1.2 2005/11/24 20:46:46 deraadt Exp $ */ /* * Written by J.T. Conklin <jtc@wimsey.com> 01/17/95. @@ -9,32 +8,21 @@ #ifndef __MACHINE_CDEFS_H__ #define __MACHINE_CDEFS_H__ -#ifdef __STDC__ #define _C_LABEL(name) _ ## name -#else -#define _C_LABEL(name) _/**/name -#endif -#ifdef __GNUC__ -#ifdef __STDC__ -#define __indr_reference(sym,alias) \ +#if defined(lint) +#define __indr_reference(sym,alias) __lint_equal__(sym,alias) +#define __warn_references(sym,msg) +#define __weak_alias(alias,sym) __lint_equal__(sym,alias) +#elif defined(__GNUC__) && defined(__STDC__) +#define __indr_reference(sym,alias) \ __asm__(".stabs \"_" #alias "\",11,0,0,0"); \ __asm__(".stabs \"_" #sym "\",1,0,0,0") -#define __warn_references(sym,msg) \ +#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"); \ - __asm__(".stabs \"_/**/sym\",1,0,0,0") -#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 #endif #endif /* __MACHINE_CDEFS_H__ */ |