diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-10 03:01:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-10 03:01:06 +0000 |
commit | 24266347a6b2e7e9701e5eea5b351d02a0290834 (patch) | |
tree | ff4375c3d0f210b9f5429d4d65a979a60af58ec4 /sys/arch/alpha/tc | |
parent | 7d82dc13a8e5b31891456d17a9afe9aa493b6b87 (diff) |
Add missing __C #define
Diffstat (limited to 'sys/arch/alpha/tc')
-rw-r--r-- | sys/arch/alpha/tc/tc_bus_mem.c | 4 |
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 *)); |