diff options
author | Rob Landley <rob@landley.net> | 2012-06-03 00:32:12 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-06-03 00:32:12 -0500 |
commit | 67a069d62c11abc3ed709a1fd3c39a1aa43570e3 (patch) | |
tree | ffdca21dfabb2f1eb7ef0e5b1200d097157f8a92 /lib/lib.h | |
parent | 38d3cfb8a38c32111e4bc713396f78ddbb0e5f50 (diff) | |
download | toybox-67a069d62c11abc3ed709a1fd3c39a1aa43570e3.tar.gz |
Update chmod to work with new dirtree, and fix bugs in string_to_mode().
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -136,6 +136,7 @@ void loopfiles(char **argv, void (*function)(int fd, char *name)); char *get_rawline(int fd, long *plen, char end); char *get_line(int fd); void xsendfile(int in, int out); +int wfchmodat(int rc, char *name, mode_t mode); int copy_tempfile(int fdin, char *name, char **tempname); void delete_tempfile(int fdin, int fdout, char **tempname); void replace_tempfile(int fdin, int fdout, char **tempname); |