summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2001-11-09 00:05:00 +0000
committermiod <miod@openbsd.org>2001-11-09 00:05:00 +0000
commitf5f396c4af776e12a386943398dce954e9fd6a75 (patch)
treeb0d92be30ef014f667d017552e3d85eb49ac5129
parentCOPY_SIGCODE serve no purpose nowadays. (diff)
downloadwireguard-openbsd-f5f396c4af776e12a386943398dce954e9fd6a75.tar.xz
wireguard-openbsd-f5f396c4af776e12a386943398dce954e9fd6a75.zip
Be less smart in this file, but at least prevent symbol names clashes
with some userland parts.
-rw-r--r--sys/arch/mvme88k/include/cdefs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/cdefs.h b/sys/arch/mvme88k/include/cdefs.h
index 0d2c8db9c4d..23719a7b7fd 100644
--- a/sys/arch/mvme88k/include/cdefs.h
+++ b/sys/arch/mvme88k/include/cdefs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cdefs.h,v 1.8 2001/09/23 02:51:17 miod Exp $ */
+/* $OpenBSD: cdefs.h,v 1.9 2001/11/09 00:05:00 miod Exp $ */
/* $NetBSD: cdefs.h,v 1.2 1995/03/23 20:10:48 jtc Exp $ */
/*
@@ -9,7 +9,11 @@
#ifndef __MACHINE_CDEFS_H__
#define __MACHINE_CDEFS_H__
-#include <machine/asm.h>
+#ifdef __STDC__
+#define _C_LABEL(name) _ ## name
+#else
+#define _C_LABEL(name) _/**/name
+#endif
#ifdef __GNUC__
#ifdef __STDC__