From 9e0aee1ff0b7ec55e918acf765d503934323bcd9 Mon Sep 17 00:00:00 2001 From: sef Date: Thu, 15 Oct 1998 04:31:44 +0000 Subject: Add lstat() as a known system call. --- usr.bin/truss/syscalls.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usr.bin/truss') diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index cf1db2c..f6c7596 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: syscalls.c,v 1.4 1998/01/05 07:30:25 charnier Exp $"; + "$Id: syscalls.c,v 1.5 1998/07/06 21:01:48 bde Exp $"; #endif /* not lint */ /* @@ -67,6 +67,8 @@ struct syscall syscalls[] = { { { Int, 0}, {Ptr | OUT , 1 }}}, { "stat", 1, 2, { { String | IN, 0 }, { Ptr | OUT, 1 }}}, + { "lstat", 1, 2, + { { String | IN, 0 }, { Ptr | OUT, 1 }}}, { "linux_newstat", 1, 2, { { String | IN, 0 }, { Ptr | OUT, 1 }}}, { "linux_newfstat", 1, 2, -- cgit v1.1