diff options
author | bde <bde@FreeBSD.org> | 1998-02-24 01:11:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-24 01:11:47 +0000 |
commit | 4410603cb46c2c32c4defb44479180adf07e97f3 (patch) | |
tree | 158a9a9e22939f1905f808b4c5e49e4320f5eee3 /usr.sbin/mptable | |
parent | dce2589b361ed7d66133ed3e2e7fc9bfa467c06d (diff) | |
download | FreeBSD-src-4410603cb46c2c32c4defb44479180adf07e97f3.zip FreeBSD-src-4410603cb46c2c32c4defb44479180adf07e97f3.tar.gz |
Don't #include implementation header <machine/types.h> directly.
#include <sys/types.h> before the headers that depend on it.
Diffstat (limited to 'usr.sbin/mptable')
-rw-r--r-- | usr.sbin/mptable/mptable.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.sbin/mptable/mptable.c b/usr.sbin/mptable/mptable.c index 1f2f519..9c79aa2 100644 --- a/usr.sbin/mptable/mptable.c +++ b/usr.sbin/mptable/mptable.c @@ -29,7 +29,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: mptable.c,v 1.9 1997/09/25 06:47:33 charnier Exp $"; #endif /* not lint */ #define VMAJOR 2 @@ -46,16 +46,13 @@ static const char rcsid[] = #define EXTENDED_PROCESSING_READY #define OEM_PROCESSING_READY_NOT +#include <sys/types.h> #include <err.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/types.h> - -#include <machine/types.h> - #define SEP_LINE \ "\n-------------------------------------------------------------------------------\n" |