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 | |
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')
-rw-r--r-- | bin/ls/ls.c | 2 | ||||
-rw-r--r-- | bin/ps/print.c | 2 |
2 files changed, 4 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> diff --git a/bin/ps/print.c b/bin/ps/print.c index a372a35..4de0dd7 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -51,10 +51,12 @@ static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #include <sys/sysctl.h> #include <err.h> +#include <grp.h> #include <langinfo.h> #include <locale.h> #include <math.h> #include <nlist.h> +#include <pwd.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> |