diff options
author | peter <peter@FreeBSD.org> | 1997-12-06 14:39:30 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-12-06 14:39:30 +0000 |
commit | bb664e8a40da9ef9488025a98e3cd094cd2ad2ec (patch) | |
tree | ea4a8c3c36f522af26afcbc81784815dbd97303b /usr.bin/truss | |
parent | f3274407b45770b0322727030976e39c9a57c125 (diff) | |
download | FreeBSD-src-bb664e8a40da9ef9488025a98e3cd094cd2ad2ec.zip FreeBSD-src-bb664e8a40da9ef9488025a98e3cd094cd2ad2ec.tar.gz |
#include <unistd.h> to get it to compile
Submitted by: Andreas Klemm <andreas@klemm.gtn.com>
Diffstat (limited to 'usr.bin/truss')
-rw-r--r-- | usr.bin/truss/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index 94d97f3..cc8a5b3 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -4,7 +4,7 @@ * do a lot of the work :). */ /* - * $Id$ + * $Id: main.c,v 1.1 1997/12/06 05:23:03 sef Exp $ */ #include <stdio.h> @@ -14,6 +14,7 @@ #include <err.h> #include <signal.h> #include <fcntl.h> +#include <unistd.h> #include <sys/ioctl.h> #include <sys/pioctl.h> |