diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-14 06:49:52 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-14 06:49:52 +0000 |
commit | 3fdc0f38fbfbf12310ed50f573e8da9481ed6214 (patch) | |
tree | 7b840eb074878c454141ce76ba7328f4a8621f1b /internal.h | |
parent | 16119c7c8b5bcc30f0642e8c2b8458db4f0e94ff (diff) | |
download | busybox-w32-3fdc0f38fbfbf12310ed50f573e8da9481ed6214.tar.gz busybox-w32-3fdc0f38fbfbf12310ed50f573e8da9481ed6214.tar.bz2 busybox-w32-3fdc0f38fbfbf12310ed50f573e8da9481ed6214.zip |
More cleanups.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@853 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 b31b902f0..50b7869cd 100644 --- a/internal.h +++ b/internal.h | |||
@@ -275,11 +275,11 @@ extern char *xstrndup (const char *s, int n); | |||
275 | /* These parse entries in /etc/passwd and /etc/group. This is desirable | 275 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
276 | * for BusyBox since we want to avoid using the glibc NSS stuff, which | 276 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |
277 | * increases target size and is often not needed embedded systems. */ | 277 | * increases target size and is often not needed embedded systems. */ |
278 | extern unsigned long my_getpwnam(char *name); | 278 | extern long my_getpwnam(char *name); |
279 | extern unsigned long my_getgrnam(char *name); | 279 | extern long my_getgrnam(char *name); |
280 | extern void my_getpwuid(char *name, unsigned long uid); | 280 | extern void my_getpwuid(char *name, long uid); |
281 | extern void my_getgrgid(char *group, unsigned long gid); | 281 | extern void my_getgrgid(char *group, long gid); |
282 | extern unsigned long my_getpwnamegid(char *name); | 282 | extern long my_getpwnamegid(char *name); |
283 | 283 | ||
284 | 284 | ||
285 | #if defined BB_INIT || defined BB_SYSLOGD | 285 | #if defined BB_INIT || defined BB_SYSLOGD |