diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-17 05:43:39 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-17 05:43:39 +0000 |
commit | c45e09cde722eae8210c601491285aabd26307c3 (patch) | |
tree | 17187e3f6988830c0e329378e552995d083080ed /internal.h | |
parent | c499de20c6b10ba483515e48aa61c4e5bb642f7c (diff) | |
download | busybox-w32-c45e09cde722eae8210c601491285aabd26307c3.tar.gz busybox-w32-c45e09cde722eae8210c601491285aabd26307c3.tar.bz2 busybox-w32-c45e09cde722eae8210c601491285aabd26307c3.zip |
Some fixes and such
git-svn-id: svn://busybox.net/trunk/busybox@29 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal.h b/internal.h index 397eca48a..4650e9f41 100644 --- a/internal.h +++ b/internal.h | |||
@@ -122,8 +122,8 @@ void freeChunks(void); | |||
122 | int fullWrite(int fd, const char *buf, int len); | 122 | int fullWrite(int fd, const char *buf, int len); |
123 | int fullRead(int fd, char *buf, int len); | 123 | int fullRead(int fd, char *buf, int len); |
124 | int recursiveAction(const char *fileName, int recurse, int followLinks, | 124 | int recursiveAction(const char *fileName, int recurse, int followLinks, |
125 | int (*fileAction) (const char *fileName), | 125 | int (*fileAction) (const char *fileName, struct stat* statbuf), |
126 | int (*dirAction) (const char *fileName)); | 126 | int (*dirAction) (const char *fileName, struct stat* statbuf)); |
127 | int match(const char* text, const char * pattern); | 127 | int match(const char* text, const char * pattern); |
128 | const char* timeString(time_t timeVal); | 128 | const char* timeString(time_t timeVal); |
129 | 129 | ||