diff options
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 10 |
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. */ |
260 | extern uid_t my_getpwnam(char *name); | 260 | extern unsigned long my_getpwnam(char *name); |
261 | extern gid_t my_getgrnam(char *name); | 261 | extern unsigned long my_getgrnam(char *name); |
262 | extern void my_getpwuid(char *name, uid_t uid); | 262 | extern void my_getpwuid(char *name, unsigned long uid); |
263 | extern void my_getgrgid(char *group, gid_t gid); | 263 | extern void my_getgrgid(char *group, unsigned long gid); |
264 | extern gid_t my_getpwnamegid(char *name); | 264 | extern 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 |