diff options
author | peter <peter@FreeBSD.org> | 1997-03-11 13:08:12 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-11 13:08:12 +0000 |
commit | 297505f8fa9ec32b558f82504c27404854c3e313 (patch) | |
tree | 5902089a1ad90a715cb57bccc9fcdee6a33122e7 /usr.bin/comm | |
parent | cc62aa07770cbb99fb48c7068048a9fbd9326313 (diff) | |
download | FreeBSD-src-297505f8fa9ec32b558f82504c27404854c3e313.zip FreeBSD-src-297505f8fa9ec32b558f82504c27404854c3e313.tar.gz |
Import some parts of CSRG 4.4BSD-Lite2 usr.bin sources to fix tree build.
Diffstat (limited to 'usr.bin/comm')
-rw-r--r-- | usr.bin/comm/comm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c index 8ffbbb5..82f995f 100644 --- a/usr.bin/comm/comm.c +++ b/usr.bin/comm/comm.c @@ -41,7 +41,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)comm.c 8.3 (Berkeley) 4/2/94"; +static char sccsid[] = "@(#)comm.c 8.4 (Berkeley) 5/4/95"; #endif /* not lint */ #include <fcntl.h> @@ -50,6 +50,7 @@ static char sccsid[] = "@(#)comm.c 8.3 (Berkeley) 4/2/94"; #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #define MAXLINELEN (LINE_MAX + 1) |