diff options
author | phk <phk@FreeBSD.org> | 2003-02-16 15:46:25 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-02-16 15:46:25 +0000 |
commit | 69de4d8f37d5152c668eef0e0d7f509eca013fe9 (patch) | |
tree | c7b63bfaff94cd550808ea592c77165f4a908871 /usr.bin/systat | |
parent | 921ab8f512b6aff3116024d1a08946bb1b04d1c0 (diff) | |
download | FreeBSD-src-69de4d8f37d5152c668eef0e0d7f509eca013fe9.zip FreeBSD-src-69de4d8f37d5152c668eef0e0d7f509eca013fe9.tar.gz |
Add #include <sys/resource.h>
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/devs.c | 1 | ||||
-rw-r--r-- | usr.bin/systat/iostat.c | 1 | ||||
-rw-r--r-- | usr.bin/systat/vmstat.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/usr.bin/systat/devs.c b/usr.bin/systat/devs.c index 6bfc864..309253e 100644 --- a/usr.bin/systat/devs.c +++ b/usr.bin/systat/devs.c @@ -68,6 +68,7 @@ static const char sccsid[] = "@(#)disks.c 8.1 (Berkeley) 6/6/93"; #include <sys/types.h> #include <sys/devicestat.h> +#include <sys/resource.h> #include <ctype.h> #include <devstat.h> diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index e05ac1b..ba39f3e 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -68,6 +68,7 @@ static const char sccsid[] = "@(#)iostat.c 8.1 (Berkeley) 6/6/93"; #include <sys/param.h> #include <sys/sysctl.h> +#include <sys/resource.h> #include <devstat.h> #include <err.h> diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index 9d442bf..5fc1985 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -49,6 +49,7 @@ static const char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #include <sys/proc.h> #include <sys/uio.h> #include <sys/namei.h> +#include <sys/resource.h> #include <sys/sysctl.h> #include <sys/vmmeter.h> |