diff options
author | Pavel Roskin | 2000-07-17 19:31:54 +0000 |
---|---|---|
committer | Pavel Roskin | 2000-07-17 19:31:54 +0000 |
commit | 21ddb38fcf0633ced1e047ac090c3fbf7d636ce5 (patch) | |
tree | 24a73f2ff13a058dacb38ce37984f279d1fab322 /internal.h | |
parent | a1d187a8a8a75cf36a45c8d6e0de86964eb2056f (diff) | |
download | busybox-21ddb38fcf0633ced1e047ac090c3fbf7d636ce5.zip busybox-21ddb38fcf0633ced1e047ac090c3fbf7d636ce5.tar.gz |
Now it's possible to compile Busybox with only one app defined
(unless it's lsmod, to be fixed by the next commit)
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -334,7 +334,6 @@ int recursiveAction(const char *fileName, int recurse, int followLinks, int dept int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData), int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData), void* userData); -const char* timeString(time_t timeVal); extern int createPath (const char *name, int mode); extern int parse_mode( const char* s, mode_t* theMode); @@ -373,10 +372,8 @@ extern void my_getpwuid(char *name, long uid); extern void my_getgrgid(char *group, long gid); extern long my_getpwnamegid(char *name); - -#if defined BB_INIT || defined BB_SYSLOGD extern int device_open(char *device, int mode); -#endif + #if defined BB_FEATURE_MOUNT_LOOP extern int del_loop(const char *device); extern int set_loop(const char *device, const char *file, int offset, int *loopro); |