diff options
author | brian <brian@FreeBSD.org> | 2000-10-16 07:11:30 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-10-16 07:11:30 +0000 |
commit | 6313f62d80b04706f0b17e4e18e7d50ad4aae028 (patch) | |
tree | 95364011d97a25c278f26df25b0e05fbe3f50822 /bin | |
parent | b93e97d898472d4d0976e79fa7a3525779bc7a55 (diff) | |
download | FreeBSD-src-6313f62d80b04706f0b17e4e18e7d50ad4aae028.zip FreeBSD-src-6313f62d80b04706f0b17e4e18e7d50ad4aae028.tar.gz |
Include sys/types.h
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ed/glbl.c | 2 | ||||
-rw-r--r-- | bin/ed/main.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/bin/ed/glbl.c b/bin/ed/glbl.c index 3eae4f2..081c5a9 100644 --- a/bin/ed/glbl.c +++ b/bin/ed/glbl.c @@ -35,6 +35,8 @@ static char * const rcsid = #endif #endif /* not lint */ +#include <sys/types.h> + #include <sys/ioctl.h> #include <sys/wait.h> diff --git a/bin/ed/main.c b/bin/ed/main.c index b73738d..9131ba8 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -57,6 +57,8 @@ static char * const rcsid = * */ +#include <sys/types.h> + #include <sys/ioctl.h> #include <sys/wait.h> #include <ctype.h> |