diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-06 22:36:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-06 22:36:00 +0000 |
commit | bd877da8c906ae1a7344d1b797c0cae0553cc372 (patch) | |
tree | 9c0e5439dfac2a039cb9da85fb4308400e0ff9a4 /usr.bin | |
parent | 69ef970c20b54b2b30dab715b21100744a5e62a9 (diff) |
proto into scope
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/find/ls.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c index 9ada82bd191..18ffbc11c9c 100644 --- a/usr.bin/find/ls.c +++ b/usr.bin/find/ls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ls.c,v 1.11 2003/06/26 07:27:29 deraadt Exp $ */ +/* $OpenBSD: ls.c,v 1.12 2003/07/06 22:35:59 deraadt Exp $ */ /* * Copyright (c) 1989, 1993 @@ -31,7 +31,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)ls.c 8.1 (Berkeley) 6/6/93";*/ -static char rcsid[] = "$OpenBSD: ls.c,v 1.11 2003/06/26 07:27:29 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ls.c,v 1.12 2003/07/06 22:35:59 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -47,6 +47,9 @@ static char rcsid[] = "$OpenBSD: ls.c,v 1.11 2003/06/26 07:27:29 deraadt Exp $"; #include <utmp.h> #include <pwd.h> #include <grp.h> +#include <fts.h> +#include "find.h" +#include "extern.h" /* Derived from the print routines in the ls(1) source code. */ |