diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-27 18:22:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-27 18:22:03 +0000 |
commit | 4142d4dc661c85b731c21b3296a04d1c5b5c3367 (patch) | |
tree | 11f7cf83505eb63db8e5dfaa47c5d5b8b81e6176 /include/busybox.h | |
parent | e677dfedd1183da404e781a48607ad7a8a7e6d87 (diff) |
Patch from Vladimir N. Oleynik to save 128 bytes by moving error
checking for some my_* functions to utility.c
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/busybox.h b/include/busybox.h index 8d4976a4b..53d22115a 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -175,11 +175,11 @@ extern unsigned long parse_number(const char *numstr, /* These parse entries in /etc/passwd and /etc/group. This is desirable * for BusyBox since we want to avoid using the glibc NSS stuff, which * increases target size and is often not needed embedded systems. */ -extern long my_getpwnam(char *name); -extern long my_getgrnam(char *name); +extern long my_getpwnam(const char *name); +extern long my_getgrnam(const char *name); extern void my_getpwuid(char *name, long uid); extern void my_getgrgid(char *group, long gid); -extern long my_getpwnamegid(char *name); +extern long my_getpwnamegid(const char *name); extern int device_open(char *device, int mode); |