diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 11:03:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 11:03:15 +0000 |
commit | dbba8ae1e2ddb9a59c996bde3ece66ce97ceba85 (patch) | |
tree | 7c8e53f8404afb73a801680fefd623a26580dc1d /usr.bin/modstat | |
parent | d6a003e7eba0b91db979f44436b87d1da088fc25 (diff) |
needs unistd.h
Diffstat (limited to 'usr.bin/modstat')
-rw-r--r-- | usr.bin/modstat/modstat.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c index b8a6548a0b0..0a69672ade1 100644 --- a/usr.bin/modstat/modstat.c +++ b/usr.bin/modstat/modstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modstat.c,v 1.8 1997/02/06 13:02:43 deraadt Exp $ */ +/* $OpenBSD: modstat.c,v 1.9 1997/09/11 11:03:14 deraadt Exp $ */ /* * Copyright (c) 1993 Terrence R. Lambert. @@ -33,17 +33,18 @@ * */ -#include <stdio.h> -#include <stdlib.h> -#include <err.h> -#include <string.h> -#include <a.out.h> #include <sys/param.h> #include <sys/ioctl.h> #include <sys/conf.h> #include <sys/mount.h> #include <sys/lkm.h> #include <sys/file.h> +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> +#include <err.h> +#include <string.h> +#include <a.out.h> #include <errno.h> #include "pathnames.h" |