aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-03-01 15:37:12 +0000
committerRon Yorston <rmy@pobox.com>2018-03-01 15:37:12 +0000
commit5b726f8a78c33e117c2a968739b1b4a6964905f8 (patch)
treeaf063c6bf3e99b7480c2fad2dffc2a76c09cb5e0 /include/libbb.h
parent5f8dac68690e92f0be220f8f8d9f797a2aedc806 (diff)
parentcc222747ae7e264cbe9b1c8a9c253860275db8a9 (diff)
downloadbusybox-w32-5b726f8a78c33e117c2a968739b1b4a6964905f8.tar.gz
busybox-w32-5b726f8a78c33e117c2a968739b1b4a6964905f8.tar.bz2
busybox-w32-5b726f8a78c33e117c2a968739b1b4a6964905f8.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 4a59ee7d8..f8e54de54 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1536,6 +1536,7 @@ extern void run_shell(const char *shell, int loginshell, const char **args) NORE
1536 */ 1536 */
1537const char *get_shell_name(void) FAST_FUNC; 1537const char *get_shell_name(void) FAST_FUNC;
1538 1538
1539#if ENABLE_FEATURE_SETPRIV_CAPABILITIES || ENABLE_RUN_INIT
1539unsigned cap_name_to_number(const char *cap) FAST_FUNC; 1540unsigned cap_name_to_number(const char *cap) FAST_FUNC;
1540void printf_cap(const char *pfx, unsigned cap_no) FAST_FUNC; 1541void printf_cap(const char *pfx, unsigned cap_no) FAST_FUNC;
1541void drop_capability(int cap_ordinal) FAST_FUNC; 1542void drop_capability(int cap_ordinal) FAST_FUNC;
@@ -1547,9 +1548,7 @@ struct caps { \
1547 struct __user_cap_data_struct data[2]; \ 1548 struct __user_cap_data_struct data[2]; \
1548} 1549}
1549void getcaps(void *caps) FAST_FUNC; 1550void getcaps(void *caps) FAST_FUNC;
1550 1551#endif
1551unsigned cap_name_to_number(const char *name) FAST_FUNC;
1552void printf_cap(const char *pfx, unsigned cap_no) FAST_FUNC;
1553 1552
1554#if ENABLE_SELINUX 1553#if ENABLE_SELINUX
1555extern void renew_current_security_context(void) FAST_FUNC; 1554extern void renew_current_security_context(void) FAST_FUNC;
@@ -2006,6 +2005,7 @@ typedef struct bb_progress_t {
2006 unsigned last_update_sec; 2005 unsigned last_update_sec;
2007 unsigned last_change_sec; 2006 unsigned last_change_sec;
2008 unsigned start_sec; 2007 unsigned start_sec;
2008 /*unsigned last_eta;*/
2009 const char *curfile; 2009 const char *curfile;
2010} bb_progress_t; 2010} bb_progress_t;
2011 2011