diff options
author | 2001-11-09 00:05:00 +0000 | |
---|---|---|
committer | 2001-11-09 00:05:00 +0000 | |
commit | f5f396c4af776e12a386943398dce954e9fd6a75 (patch) | |
tree | b0d92be30ef014f667d017552e3d85eb49ac5129 | |
parent | COPY_SIGCODE serve no purpose nowadays. (diff) | |
download | wireguard-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.h | 8 |
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__ |