diff options
author | 1998-02-05 22:57:51 +0000 | |
---|---|---|
committer | 1998-02-05 22:57:51 +0000 | |
commit | 2d464ffbf07cedc05e5ed0c05f7a2e2a07549619 (patch) | |
tree | 4d7a239f42ea85de49df2cd1ef70a412f2834f63 | |
parent | Actually, if you'd like to be technical, obio first appeared in OpenBSD 2.0. (diff) | |
download | wireguard-openbsd-2d464ffbf07cedc05e5ed0c05f7a2e2a07549619.tar.xz wireguard-openbsd-2d464ffbf07cedc05e5ed0c05f7a2e2a07549619.zip |
need db_var.h
-rw-r--r-- | sys/arch/alpha/isa/pckbd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/isa/pckbd.c b/sys/arch/alpha/isa/pckbd.c index 49e337acae7..da04102efcb 100644 --- a/sys/arch/alpha/isa/pckbd.c +++ b/sys/arch/alpha/isa/pckbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pckbd.c,v 1.13 1998/02/05 16:47:59 deraadt Exp $ */ +/* $OpenBSD: pckbd.c,v 1.14 1998/02/05 22:57:51 deraadt Exp $ */ /* $NetBSD: pckbd.c,v 1.14 1996/12/05 01:39:30 cgd Exp $ */ /*- @@ -52,6 +52,9 @@ #include <sys/systm.h> #include <sys/kernel.h> #include <sys/device.h> +#ifdef DDB +#include <ddb/db_var.h> +#endif #include <machine/intr.h> #include <machine/bus.h> |