summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1997-04-10 03:01:05 +0000
committermillert <millert@openbsd.org>1997-04-10 03:01:05 +0000
commita0fe065e09c943c1cbca1b869f8318993334fd90 (patch)
tree1fed37e0c321bb421ede50e1fb553c74c2eae4d4
parentChanges from Denny Gentry <denny1@home.com>: (diff)
downloadwireguard-openbsd-a0fe065e09c943c1cbca1b869f8318993334fd90.tar.xz
wireguard-openbsd-a0fe065e09c943c1cbca1b869f8318993334fd90.zip
Add missing __C #define
-rw-r--r--sys/arch/alpha/tc/tc_bus_mem.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/alpha/tc/tc_bus_mem.c b/sys/arch/alpha/tc/tc_bus_mem.c
index 79740b2dc08..f1fe7f6b7ae 100644
--- a/sys/arch/alpha/tc/tc_bus_mem.c
+++ b/sys/arch/alpha/tc/tc_bus_mem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tc_bus_mem.c,v 1.7 1997/04/02 22:08:10 niklas Exp $ */
+/* $OpenBSD: tc_bus_mem.c,v 1.8 1997/04/10 03:01:05 millert Exp $ */
/* $NetBSD: tc_bus_mem.c,v 1.13 1996/12/02 22:19:34 cgd Exp $ */
/*
@@ -42,6 +42,8 @@
#include <machine/bus.h>
#include <dev/tc/tcvar.h>
+#define __C(A,B) __CONCAT(A,B)
+
/* mapping/unmapping */
int tc_mem_map __P((void *, bus_addr_t, bus_size_t, int,
bus_space_handle_t *));