diff options
author | mike <mike@FreeBSD.org> | 2002-09-17 17:59:51 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-09-17 17:59:51 +0000 |
commit | e25a8d33e2fa800c3a9232bd96274503a7c005a9 (patch) | |
tree | 98286543b3bcff43a90640bc5d9b0e3fa1e55e6d /usr.sbin | |
parent | 6d599b2b064066af12cda8927da88f691f9aa847 (diff) | |
download | FreeBSD-src-e25a8d33e2fa800c3a9232bd96274503a7c005a9.zip FreeBSD-src-e25a8d33e2fa800c3a9232bd96274503a7c005a9.tar.gz |
Don't depend on <sys/types.h> pollution in <sys/fcntl.h>.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pcvt/kbdio/kbdio.y | 1 | ||||
-rw-r--r-- | usr.sbin/pcvt/vgaio/vgaio.y | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/pcvt/kbdio/kbdio.y b/usr.sbin/pcvt/kbdio/kbdio.y index 55bf231..9207d26 100644 --- a/usr.sbin/pcvt/kbdio/kbdio.y +++ b/usr.sbin/pcvt/kbdio/kbdio.y @@ -47,6 +47,7 @@ * */ +#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <math.h> diff --git a/usr.sbin/pcvt/vgaio/vgaio.y b/usr.sbin/pcvt/vgaio/vgaio.y index 7d5c05a..a73314a 100644 --- a/usr.sbin/pcvt/vgaio/vgaio.y +++ b/usr.sbin/pcvt/vgaio/vgaio.y @@ -50,6 +50,7 @@ * hex values shown as 2 fixed chars, added binary output */ +#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <sys/fcntl.h> |