diff options
Diffstat (limited to 'include')
-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, | |||
175 | /* These parse entries in /etc/passwd and /etc/group. This is desirable | 175 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
176 | * for BusyBox since we want to avoid using the glibc NSS stuff, which | 176 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |
177 | * increases target size and is often not needed embedded systems. */ | 177 | * increases target size and is often not needed embedded systems. */ |
178 | extern long my_getpwnam(char *name); | 178 | extern long my_getpwnam(const char *name); |
179 | extern long my_getgrnam(char *name); | 179 | extern long my_getgrnam(const char *name); |
180 | extern void my_getpwuid(char *name, long uid); | 180 | extern void my_getpwuid(char *name, long uid); |
181 | extern void my_getgrgid(char *group, long gid); | 181 | extern void my_getgrgid(char *group, long gid); |
182 | extern long my_getpwnamegid(char *name); | 182 | extern long my_getpwnamegid(const char *name); |
183 | 183 | ||
184 | extern int device_open(char *device, int mode); | 184 | extern int device_open(char *device, int mode); |
185 | 185 | ||