summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-17 05:43:39 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-17 05:43:39 +0000
commit9b5871888989b16f94cbba5dd304ac444def3afd (patch)
tree17187e3f6988830c0e329378e552995d083080ed /internal.h
parentcb6e25655f894c90e4befc4bee0e66794dd6858f (diff)
downloadbusybox-w32-9b5871888989b16f94cbba5dd304ac444def3afd.tar.gz
busybox-w32-9b5871888989b16f94cbba5dd304ac444def3afd.tar.bz2
busybox-w32-9b5871888989b16f94cbba5dd304ac444def3afd.zip
Some fixes and such
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h4
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);
122int fullWrite(int fd, const char *buf, int len); 122int fullWrite(int fd, const char *buf, int len);
123int fullRead(int fd, char *buf, int len); 123int fullRead(int fd, char *buf, int len);
124int recursiveAction(const char *fileName, int recurse, int followLinks, 124int 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));
127int match(const char* text, const char * pattern); 127int match(const char* text, const char * pattern);
128const char* timeString(time_t timeVal); 128const char* timeString(time_t timeVal);
129 129