diff options
author | phk <phk@FreeBSD.org> | 2003-02-16 16:01:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-02-16 16:01:52 +0000 |
commit | 9948f76f416fc3d2e93b6c156144165940c3d0d1 (patch) | |
tree | 1d993843834234f1057151e8d036589a75495089 /usr.bin/vmstat | |
parent | 69de4d8f37d5152c668eef0e0d7f509eca013fe9 (diff) | |
download | FreeBSD-src-9948f76f416fc3d2e93b6c156144165940c3d0d1.zip FreeBSD-src-9948f76f416fc3d2e93b6c156144165940c3d0d1.tar.gz |
Add #include <sys/resource.h>
My apologies for missing these #includes, I must have confused the
dependencies with a wrong timestamp or something.
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 31a3238..0f0684e 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -54,6 +54,7 @@ static const char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; #include <sys/signal.h> #include <sys/fcntl.h> #include <sys/ioctl.h> +#include <sys/resource.h> #include <sys/sysctl.h> #include <sys/vmmeter.h> |