aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
-rw-r--r--include/usage.h7
2 files changed, 7 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 2868eba03..bedf659b7 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1099,6 +1099,8 @@ const char *get_signame(int number) FAST_FUNC;
1099void print_signames(void) FAST_FUNC; 1099void print_signames(void) FAST_FUNC;
1100 1100
1101char *bb_simplify_path(const char *path) FAST_FUNC; 1101char *bb_simplify_path(const char *path) FAST_FUNC;
1102/* Returns ptr to NUL */
1103char *bb_simplify_abs_path_inplace(char *path) FAST_FUNC;
1102 1104
1103#define FAIL_DELAY 3 1105#define FAIL_DELAY 3
1104extern void bb_do_delay(int seconds) FAST_FUNC; 1106extern void bb_do_delay(int seconds) FAST_FUNC;
diff --git a/include/usage.h b/include/usage.h
index d3bf7849e..bfacc5611 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -3404,12 +3404,15 @@
3404 "files do not block on disk I/O" 3404 "files do not block on disk I/O"
3405 3405
3406#define readlink_trivial_usage \ 3406#define readlink_trivial_usage \
3407 USE_FEATURE_READLINK_FOLLOW("[-f] ") "FILE" 3407 USE_FEATURE_READLINK_FOLLOW("[-fnv] ") "FILE"
3408#define readlink_full_usage "\n\n" \ 3408#define readlink_full_usage "\n\n" \
3409 "Display the value of a symlink" \ 3409 "Display the value of a symlink" \
3410 USE_FEATURE_READLINK_FOLLOW( "\n" \ 3410 USE_FEATURE_READLINK_FOLLOW( "\n" \
3411 "\nOptions:" \ 3411 "\nOptions:" \
3412 "\n -f Canonicalize by following all symlinks") \ 3412 "\n -f Canonicalize by following all symlinks" \
3413 "\n -n Don't add newline" \
3414 "\n -v Verbose" \
3415 ) \
3413 3416
3414#define readprofile_trivial_usage \ 3417#define readprofile_trivial_usage \
3415 "[OPTIONS]..." 3418 "[OPTIONS]..."