aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-12-05 20:03:17 +0000
committerMark Whitley <markw@lineo.com>2000-12-05 20:03:17 +0000
commit4758368505c2951300650ddcc93de6c657b43d50 (patch)
tree6890d8b480bc1040cdb8b1921db9e604754d1630 /include/busybox.h
parentcf61fe14aebf2b5f753261afdb9e03167b31a843 (diff)
downloadbusybox-4758368505c2951300650ddcc93de6c657b43d50.tar.gz
Fixed the comments to match the code and renamed the function to a (hopefully)
more descriptive name, and as per the style guide.
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 4a4f44aea..21c62faac 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -144,7 +144,7 @@ void reset_ino_dev_hashtable(void);
int copyFile(const char *srcName, const char *destName,
int setModes, int followLinks, int forceFlag);
-int copySubFile(int srcFd, int dstFd, size_t remaining);
+int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
char *buildName(const char *dirName, const char *fileName);
int makeString(int argc, const char **argv, char *buf, int bufLen);
char *getChunk(int size);