diff options
author | roberto <roberto@FreeBSD.org> | 2000-06-14 07:43:52 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2000-06-14 07:43:52 +0000 |
commit | 9ea08b1bb37fd6e39f53d0aa5e4894607e6f40ba (patch) | |
tree | 758c938f877c7f9be6f62b3aab694832c3319fcb /usr.bin/find | |
parent | f2f3d42fded199ec1e64eb2c1eeaa57e0543aa37 (diff) | |
download | FreeBSD-src-9ea08b1bb37fd6e39f53d0aa5e4894607e6f40ba.zip FreeBSD-src-9ea08b1bb37fd6e39f53d0aa5e4894607e6f40ba.tar.gz |
Make find -Wall -Wredundant-decls clean.
Submitted by: nrahlstr
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/function.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index bb8b174..d833a91 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -911,8 +911,6 @@ f_nogroup(plan, entry) PLAN *plan; FTSENT *entry; { - char *group_from_gid(); - return (group_from_gid(entry->fts_statp->st_gid, 1) ? 0 : 1); } @@ -935,8 +933,6 @@ f_nouser(plan, entry) PLAN *plan; FTSENT *entry; { - char *user_from_uid(); - return (user_from_uid(entry->fts_statp->st_uid, 1) ? 0 : 1); } |