From 64421129b672d0ce55c5aa235e5038dd2ea1b32b Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 2 Mar 2011 16:06:32 +0100 Subject: lib/util/util_pw: share sys_get{pw,gr} group of calls. Guenther --- source3/include/proto.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source3/include/proto.h') diff --git a/source3/include/proto.h b/source3/include/proto.h index 14ec2d6853..94cc9f9baa 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -868,13 +868,6 @@ void sys_srandom(unsigned int seed); int groups_max(void); int sys_getgroups(int setlen, gid_t *gidset); int sys_setgroups(gid_t UNUSED(primary_gid), int setlen, gid_t *gidset); -void sys_setpwent(void); -struct passwd *sys_getpwent(void); -void sys_endpwent(void); -struct passwd *sys_getpwnam(const char *name); -struct passwd *sys_getpwuid(uid_t uid); -struct group *sys_getgrnam(const char *name); -struct group *sys_getgrgid(gid_t gid); int sys_popen(const char *command); int sys_pclose(int fd); ssize_t sys_getxattr (const char *path, const char *name, void *value, size_t size); -- cgit