diff options
author | imp <imp@FreeBSD.org> | 2002-02-19 00:05:59 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-02-19 00:05:59 +0000 |
commit | 60cc340d82f5a470fed8ad4fe6d885a215c0f2c6 (patch) | |
tree | 4d682fcb9116e7b87abdc334d07500b7f166fa9a /bin/ls/ls.c | |
parent | 8818100b0fa5f9b2ff855015b36b15b9deb1726f (diff) | |
download | FreeBSD-src-60cc340d82f5a470fed8ad4fe6d885a215c0f2c6.zip FreeBSD-src-60cc340d82f5a470fed8ad4fe6d885a215c0f2c6.tar.gz |
Fixed divots that I created when I moved prototypes of group_from_gid
and user_from_uid to grp.h and pwd.h. Update the man pages.
Submitted by: David Malone
Pointy hat to: imp
Diffstat (limited to 'bin/ls/ls.c')
-rw-r--r-- | bin/ls/ls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c index 466539b..644a4cb 100644 --- a/bin/ls/ls.c +++ b/bin/ls/ls.c @@ -58,8 +58,10 @@ static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94"; #include <err.h> #include <errno.h> #include <fts.h> +#include <grp.h> #include <limits.h> #include <locale.h> +#include <pwd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |