aboutsummaryrefslogtreecommitdiff
path: root/include/pwd.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-03 23:19:26 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-03 23:19:26 +0000
commit887ca79f04cdf45874ed783c1fb9b950bf25a246 (patch)
tree25f08b2b2ea8b333aac91b6b75876f82a4cfef6f /include/pwd.h
parent360e2549544b813dd805361d04744c5a4a630bb8 (diff)
downloadbusybox-887ca79f04cdf45874ed783c1fb9b950bf25a246.tar.gz
Scrub pwd.h and grp.h handling so we don't have to play any
silly games. -Erik
Diffstat (limited to 'include/pwd.h')
-rw-r--r--include/pwd.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/include/pwd.h b/include/pwd.h
deleted file mode 100644
index 178e9e97a..000000000
--- a/include/pwd.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef __CONFIG_PWD_H
-#define __CONFIG_PWD_H
-
-#if !defined CONFIG_USE_BB_PWD_GRP
-#include_next <pwd.h>
-
-#else
-
-#include <sys/types.h>
-#include <features.h>
-#include <stdio.h>
-
-/* The passwd structure. */
-struct passwd
-{
- char *pw_name; /* Username. */
- char *pw_passwd; /* Password. */
- uid_t pw_uid; /* User ID. */
- gid_t pw_gid; /* Group ID. */
- char *pw_gecos; /* Real name. */
- char *pw_dir; /* Home directory. */
- char *pw_shell; /* Shell program. */
-};
-
-extern void setpwent __P ((void));
-extern void endpwent __P ((void));
-extern struct passwd * getpwent __P ((void));
-
-extern int putpwent __P ((__const struct passwd * __p, FILE * __f));
-extern int getpw __P ((uid_t uid, char *buf));
-
-extern struct passwd * fgetpwent __P ((FILE * file));
-
-extern struct passwd * getpwuid __P ((__const uid_t));
-extern struct passwd * getpwnam __P ((__const char *));
-
-extern struct passwd * __getpwent __P ((__const int passwd_fd));
-
-#endif /* USE_SYSTEM_PWD_GRP */
-#endif /* __CONFIG_PWD_H */
-