diff options
author | 1997-09-11 11:03:14 +0000 | |
---|---|---|
committer | 1997-09-11 11:03:14 +0000 | |
commit | ce214113a3946bcf3c47a6b1fbea7ed25804fcbe (patch) | |
tree | aa477e675bf6481b6560b660895d5b5d9fb007bd | |
parent | sync with netbsd; missing SCARG() macros (diff) | |
download | wireguard-openbsd-ce214113a3946bcf3c47a6b1fbea7ed25804fcbe.tar.xz wireguard-openbsd-ce214113a3946bcf3c47a6b1fbea7ed25804fcbe.zip |
needs unistd.h
-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" |