diff options
author | imp <imp@FreeBSD.org> | 2002-02-14 01:59:47 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-02-14 01:59:47 +0000 |
commit | f58558abb789d5e2b6a7deb4566483c01b0f4d58 (patch) | |
tree | eeb67e79cff6a9d2211b5a4a193d0f32f920619a /bin/rm | |
parent | 8c67ca76f79f837ceff85f7b9beb68cb784aaadd (diff) | |
download | FreeBSD-src-f58558abb789d5e2b6a7deb4566483c01b0f4d58.zip FreeBSD-src-f58558abb789d5e2b6a7deb4566483c01b0f4d58.tar.gz |
Move user_from_uid to pwd.h
Move group_from_gid to grp.h
Remove from stdlib.h
Make the prototypes match the code
Fix rm and mv to include new files.
NetBSD has these defined in those files, and others too that I've not
done.
Approved by: terminal room kabal
Reviewed by: jhb, phk
Diffstat (limited to 'bin/rm')
-rw-r--r-- | bin/rm/rm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index eee4135..5461724 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -54,6 +54,8 @@ static const char rcsid[] = #include <errno.h> #include <fcntl.h> #include <fts.h> +#include <grp.h> +#include <pwd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |