diff options
author | Eric Andersen | 1999-10-17 05:43:39 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-17 05:43:39 +0000 |
commit | 9b5871888989b16f94cbba5dd304ac444def3afd (patch) | |
tree | 17187e3f6988830c0e329378e552995d083080ed /internal.h | |
parent | cb6e25655f894c90e4befc4bee0e66794dd6858f (diff) | |
download | busybox-9b5871888989b16f94cbba5dd304ac444def3afd.zip busybox-9b5871888989b16f94cbba5dd304ac444def3afd.tar.gz |
Some fixes and such
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -122,8 +122,8 @@ 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 (*fileAction) (const char *fileName), - int (*dirAction) (const char *fileName)); + int (*fileAction) (const char *fileName, struct stat* statbuf), + int (*dirAction) (const char *fileName, struct stat* statbuf)); int match(const char* text, const char * pattern); const char* timeString(time_t timeVal); |