diff options
author | Rob Landley <rob@landley.net> | 2008-02-21 04:44:42 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-02-21 04:44:42 -0600 |
commit | 7f184faac064c66ba28dd44c0df94e34f60db8b0 (patch) | |
tree | d3ac34f8403cd4aef63944973b1d9a8dc157b904 /lib/lib.h | |
parent | 6e6871c3b253d26ab31e328dd5f9b6996b75688c (diff) | |
download | toybox-7f184faac064c66ba28dd44c0df94e34f60db8b0.tar.gz |
Make cp pass most of its test suite. Still need to add symlink support.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ struct dirtree { struct dirtree *dirtree_add_node(char *path); struct dirtree *dirtree_read(char *path, struct dirtree *parent, - int (*callback)(struct dirtree *node, int after)); + int (*callback)(char *path, struct dirtree *node)); // lib.c void xstrcpy(char *dest, char *src, size_t size); |