summaryrefslogtreecommitdiff
path: root/include
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
parentcf61fe14aebf2b5f753261afdb9e03167b31a843 (diff)
downloadbusybox-w32-4758368505c2951300650ddcc93de6c657b43d50.tar.gz
busybox-w32-4758368505c2951300650ddcc93de6c657b43d50.tar.bz2
busybox-w32-4758368505c2951300650ddcc93de6c657b43d50.zip
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')
-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);
144 144
145int copyFile(const char *srcName, const char *destName, 145int copyFile(const char *srcName, const char *destName,
146 int setModes, int followLinks, int forceFlag); 146 int setModes, int followLinks, int forceFlag);
147int copySubFile(int srcFd, int dstFd, size_t remaining); 147int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
148char *buildName(const char *dirName, const char *fileName); 148char *buildName(const char *dirName, const char *fileName);
149int makeString(int argc, const char **argv, char *buf, int bufLen); 149int makeString(int argc, const char **argv, char *buf, int bufLen);
150char *getChunk(int size); 150char *getChunk(int size);