summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-24 20:46:50 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-24 20:46:50 +0000
commit0bd81c002fb213b540eb7ec7e06421b7a32dacee (patch)
tree9daa65bef23768b6d027cc7566aaeab8909dce12 /sys/arch/sparc
parenta44bf7617d9b5f641c1a92ddbb461af565b9f9b9 (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/sparc')
-rw-r--r--sys/arch/sparc/include/cdefs.h37
1 files changed, 11 insertions, 26 deletions
diff --git a/sys/arch/sparc/include/cdefs.h b/sys/arch/sparc/include/cdefs.h
index 711af194ebc..fc3d0f6244d 100644
--- a/sys/arch/sparc/include/cdefs.h
+++ b/sys/arch/sparc/include/cdefs.h
@@ -1,5 +1,4 @@
-/* $OpenBSD: cdefs.h,v 1.8 2002/08/11 12:13:16 art Exp $ */
-/* $NetBSD: cdefs.h,v 1.3 1996/12/27 20:51:31 pk Exp $ */
+/* $OpenBSD: cdefs.h,v 1.9 2005/11/24 20:46:48 deraadt Exp $ */
/*
* Written by J.T. Conklin <jtc@wimsey.com> 01/17/95.
@@ -9,33 +8,19 @@
#ifndef _MACHINE_CDEFS_H_
#define _MACHINE_CDEFS_H_
-#ifdef __STDC__
#define _C_LABEL(x) _STRING(_ ## x)
-#else
-#define _C_LABEL(x) _STRING(_/**/x)
-#endif
-
-#if defined(__GNUC__) && defined(__STDC__)
-#ifdef __ELF__
-#define __weak_alias(alias,sym) \
- __asm__(".weak " __STRING(alias) " ; " __STRING(alias) " = " __STRING(sym))
-#define __warn_references(sym,msg) \
- __asm__(".section .gnu.warning." __STRING(sym) " ; .ascii \"" msg "\" ; .text")
-#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 "= _" __STRING(sym))
-#endif /* __ELF__ */
-#else
-#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)
+#define __weak_alias(alias,sym) __lint_equal__(sym,alias)
+#elif defined(__GNUC__) && defined(__STDC__)
+#define __weak_alias(alias,sym) \
+ __asm__(".weak " __STRING(alias) " ; " \
+ __STRING(alias) " = " __STRING(sym))
+#define __warn_references(sym,msg) \
+ __asm__(".section .gnu.warning." __STRING(sym) \
+ " ; .ascii \"" msg "\" ; .text")
#endif
#endif /* !_MACHINE_CDEFS_H_ */