diff options
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 | ||