diff options
author | charnier <charnier@FreeBSD.org> | 1998-05-13 07:19:45 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-05-13 07:19:45 +0000 |
commit | b35618eb35ff79904e5d42e24eb655d9b6416099 (patch) | |
tree | 70d41ef71fda1b266dd70318a71b7bf39e55e0ef /bin/chio/chio.c | |
parent | 6a2297e2da1f325214e5c9810ee428604e322bdc (diff) | |
download | FreeBSD-src-b35618eb35ff79904e5d42e24eb655d9b6416099.zip FreeBSD-src-b35618eb35ff79904e5d42e24eb655d9b6416099.tar.gz |
Do not remove include of <sys/param.h> and <sys/types.h>. They should
be here before including almost any POSIX header.
Requested by: Bruce
Diffstat (limited to 'bin/chio/chio.c')
-rw-r--r-- | bin/chio/chio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/chio/chio.c b/bin/chio/chio.c index 4507b59..7488e7a 100644 --- a/bin/chio/chio.c +++ b/bin/chio/chio.c @@ -32,9 +32,10 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: chio.c,v 1.5 1998/05/06 06:49:56 charnier Exp $"; #endif /* not lint */ +#include <sys/param.h> #include <sys/chio.h> #include <err.h> #include <fcntl.h> |