diff options
author | 1996-04-18 10:57:19 +0000 | |
---|---|---|
committer | 1996-04-18 10:57:19 +0000 | |
commit | 2c98da788daacee8dc2c56501fde28c48f6f0ff6 (patch) | |
tree | b13aac594ddfb1ee8a8bb0a506ec8016c6cd67e2 | |
parent | Fix a typo (get_vflag[s]). (diff) | |
download | wireguard-openbsd-2c98da788daacee8dc2c56501fde28c48f6f0ff6.tar.xz wireguard-openbsd-2c98da788daacee8dc2c56501fde28c48f6f0ff6.zip |
Fixed according to the latest i386 changes.
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index ad62eebd330..4b505cf44b2 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -1,5 +1,5 @@ /* $NetBSD: vmstat.c,v 1.27 1995/10/10 01:17:35 cgd Exp $ */ -/* $OpenBSD: vmstat.c,v 1.6 1996/03/03 02:51:24 tholo Exp $ */ +/* $OpenBSD: vmstat.c,v 1.7 1996/04/18 10:57:19 mickey Exp $ */ /* * Copyright (c) 1980, 1986, 1991, 1993 @@ -146,7 +146,7 @@ struct nlist namelist[] = { #define X_INTRHAND (X_END) { "_intrhand" }, #define X_INTRSTRAY (X_END+1) - { "_intrstray" }, + { "_isa_strayintr" }, #endif { "" }, }; @@ -725,7 +725,7 @@ dointr() #elif defined(i386) /* To get struct intrhand */ #define _KERNEL -#include <machine/psl.h> +#include <i386/isa/isa_machdep.h> #undef _KERNEL void dointr() |