diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-21 23:40:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-21 23:40:20 +0000 |
commit | f24e1f40e032e99cf57a05730e7632b825d3016d (patch) | |
tree | a6d0fa74d59e67d1570c54157f5ebcc47b4522d0 /include | |
parent | 8d73c35916cbae67f5d0269b128de40f9992ddc6 (diff) | |
download | busybox-w32-f24e1f40e032e99cf57a05730e7632b825d3016d.tar.gz busybox-w32-f24e1f40e032e99cf57a05730e7632b825d3016d.tar.bz2 busybox-w32-f24e1f40e032e99cf57a05730e7632b825d3016d.zip |
cp: add support for -s, -l. Fix free(nonmalloc) bug.
Add doc on POSIX's rules on -i and -f (insane!).
ln: make "ln dangling_symlink new_link" work.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index b1ddbb0c0..3fa49728f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -473,8 +473,11 @@ enum { /* DO NOT CHANGE THESE VALUES! cp.c depends on them. */ | |||
473 | FILEUTILS_DEREFERENCE = 2, | 473 | FILEUTILS_DEREFERENCE = 2, |
474 | FILEUTILS_RECUR = 4, | 474 | FILEUTILS_RECUR = 4, |
475 | FILEUTILS_FORCE = 8, | 475 | FILEUTILS_FORCE = 8, |
476 | FILEUTILS_INTERACTIVE = 16 | 476 | FILEUTILS_INTERACTIVE = 0x10, |
477 | FILEUTILS_MAKE_HARDLINK = 0x20, | ||
478 | FILEUTILS_MAKE_SOFTLINK = 0x40, | ||
477 | }; | 479 | }; |
480 | #define FILEUTILS_CP_OPTSTR "pdRfils" | ||
478 | 481 | ||
479 | extern const char *applet_name; | 482 | extern const char *applet_name; |
480 | 483 | ||