aboutsummaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal.h b/internal.h
index 92b0255b0..eb498be43 100644
--- a/internal.h
+++ b/internal.h
@@ -257,11 +257,11 @@ extern char *cstring_lineFromFile(FILE *f);
257/* These parse entries in /etc/passwd and /etc/group. This is desirable 257/* These parse entries in /etc/passwd and /etc/group. This is desirable
258 * for BusyBox since we want to avoid using the glibc NSS stuff, which 258 * for BusyBox since we want to avoid using the glibc NSS stuff, which
259 * increases target size and is often not needed embedded systems. */ 259 * increases target size and is often not needed embedded systems. */
260extern uid_t my_getpwnam(char *name); 260extern unsigned long my_getpwnam(char *name);
261extern gid_t my_getgrnam(char *name); 261extern unsigned long my_getgrnam(char *name);
262extern void my_getpwuid(char *name, uid_t uid); 262extern void my_getpwuid(char *name, unsigned long uid);
263extern void my_getgrgid(char *group, gid_t gid); 263extern void my_getgrgid(char *group, unsigned long gid);
264extern gid_t my_getpwnamegid(char *name); 264extern unsigned long my_getpwnamegid(char *name);
265 265
266 266
267#if defined BB_INIT || defined BB_SYSLOGD 267#if defined BB_INIT || defined BB_SYSLOGD