summaryrefslogtreecommitdiffstats
path: root/usr.bin/truss
diff options
context:
space:
mode:
authorjmg <jmg@FreeBSD.org>1998-01-07 06:19:50 +0000
committerjmg <jmg@FreeBSD.org>1998-01-07 06:19:50 +0000
commit07395e5a81ff961dcf493065e4047f7afefcaeef (patch)
tree0bbd517ae847cb1fc183be5ff92ea8f8ceb80ae2 /usr.bin/truss
parentcbf538c65f55c44d6b75f7ecb922cf0dbe5fc3f2 (diff)
downloadFreeBSD-src-07395e5a81ff961dcf493065e4047f7afefcaeef.zip
FreeBSD-src-07395e5a81ff961dcf493065e4047f7afefcaeef.tar.gz
include sys so it builds on 2.2.x
also, fix misspelling of -1 (as EOF for getopt)
Diffstat (limited to 'usr.bin/truss')
-rw-r--r--usr.bin/truss/Makefile2
-rw-r--r--usr.bin/truss/main.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile
index 63172a8..e57704f 100644
--- a/usr.bin/truss/Makefile
+++ b/usr.bin/truss/Makefile
@@ -1,7 +1,7 @@
PROG= truss
SRCS= main.c setup.c i386-fbsd.c i386-linux.c \
syscalls.c linux_syscalls.h syscalls.h ioctl.c
-CFLAGS+= -I${.CURDIR} -I.
+CFLAGS+= -I${.CURDIR} -I. -I${.CURDIR}/../../sys
CLEANFILES+=i386l-syscalls.master syscalls.master linux_syscalls.h \
syscalls.h ioctl.c
diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c
index 37608bb..8c020e5 100644
--- a/usr.bin/truss/main.c
+++ b/usr.bin/truss/main.c
@@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: main.c,v 1.7 1998/01/05 07:30:25 charnier Exp $";
#endif /* not lint */
/*
@@ -128,7 +128,7 @@ main(int ac, char **av) {
int in_exec = 0;
char *fname = NULL;
- while ((c = getopt(ac, av, "p:o:S")) != EOF) {
+ while ((c = getopt(ac, av, "p:o:S")) != -1) {
switch (c) {
case 'p': /* specified pid */
pid = atoi(optarg);
OpenPOWER on IntegriCloud