diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-12-13 15:01:13 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-13 15:01:13 +0000 |
| commit | d376015efed104a8a4417265237117f8042e4de1 (patch) | |
| tree | c8f34f86c2f8bc2f87de716f33385960d488b604 /usr.bin/vmstat | |
| parent | 99406bcc389d87ad7df45e5a8c13776823f639c2 (diff) | |
Notes
Diffstat (limited to 'usr.bin/vmstat')
| -rw-r--r-- | usr.bin/vmstat/vmstat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 0c632a2fb642..beaef227b53d 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -44,9 +44,9 @@ static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; #include <sys/param.h> #include <sys/time.h> #include <sys/proc.h> -#include <sys/user.h> #include <sys/dkstat.h> #include <sys/buf.h> +#include <sys/uio.h> #include <sys/namei.h> #include <sys/malloc.h> #include <sys/signal.h> @@ -54,7 +54,9 @@ static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; #include <sys/ioctl.h> #include <sys/sysctl.h> #include <sys/vmmeter.h> -#include <vm/vm.h> + +#include <vm/vm_param.h> + #include <time.h> #include <nlist.h> #include <kvm.h> |
