diff options
author | Erik Andersen | 2000-03-28 00:58:14 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-28 00:58:14 +0000 |
commit | 3364d78b18386623e7af5da18ba1bb0cc6286279 (patch) | |
tree | 36b57afb6f3eefcdc8fdaf40e51fa6956264db50 /internal.h | |
parent | 6acaa40f27de0da935c3063b6be2ead9eeee5d0b (diff) | |
download | busybox-3364d78b18386623e7af5da18ba1bb0cc6286279.zip busybox-3364d78b18386623e7af5da18ba1bb0cc6286279.tar.gz |
Yet another installment in the ongoing tar saga
-Erik
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -191,8 +191,9 @@ void freeChunks(void); int fullWrite(int fd, const char *buf, int len); int fullRead(int fd, char *buf, int len); int recursiveAction(const char *fileName, int recurse, int followLinks, int depthFirst, - int (*fileAction) (const char *fileName, struct stat* statbuf), - int (*dirAction) (const char *fileName, struct stat* statbuf)); + 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); @@ -227,8 +228,6 @@ extern void cmdedit_init(void); #if defined BB_INIT || defined BB_SYSLOGD extern int device_open(char *device, int mode); #endif -extern void whine_if_fstab_is_missing(); - #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); |