aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-10-06 12:50:22 +0100
committerRon Yorston <rmy@pobox.com>2014-10-06 12:50:22 +0100
commitb04d11dcbadda2620743a1dd923938f2f3043a38 (patch)
tree971afe425a81304b79e44122e220c7a69efe2616 /include/libbb.h
parent124bbf02948b7ac0babb4ead04acd1559db182d3 (diff)
parent760d035699c4a878f9109544c1d35ea0d5f6b76c (diff)
downloadbusybox-w32-b04d11dcbadda2620743a1dd923938f2f3043a38.tar.gz
busybox-w32-b04d11dcbadda2620743a1dd923938f2f3043a38.tar.bz2
busybox-w32-b04d11dcbadda2620743a1dd923938f2f3043a38.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index f5ecc025f..21a56d78f 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -403,8 +403,8 @@ const char *bb_basename(const char *name) FAST_FUNC;
403char *last_char_is(const char *s, int c) FAST_FUNC; 403char *last_char_is(const char *s, int c) FAST_FUNC;
404const char* endofname(const char *name) FAST_FUNC; 404const char* endofname(const char *name) FAST_FUNC;
405 405
406void ndelay_on(int fd) FAST_FUNC; 406int ndelay_on(int fd) FAST_FUNC;
407void ndelay_off(int fd) FAST_FUNC; 407int ndelay_off(int fd) FAST_FUNC;
408void close_on_exec_on(int fd) FAST_FUNC; 408void close_on_exec_on(int fd) FAST_FUNC;
409void xdup2(int, int) FAST_FUNC; 409void xdup2(int, int) FAST_FUNC;
410void xmove_fd(int, int) FAST_FUNC; 410void xmove_fd(int, int) FAST_FUNC;
@@ -1332,6 +1332,7 @@ int sd_listen_fds(void);
1332#define SETUP_ENV_NO_CHDIR (1 << 4) 1332#define SETUP_ENV_NO_CHDIR (1 << 4)
1333void setup_environment(const char *shell, int flags, const struct passwd *pw) FAST_FUNC; 1333void setup_environment(const char *shell, int flags, const struct passwd *pw) FAST_FUNC;
1334void nuke_str(char *str) FAST_FUNC; 1334void nuke_str(char *str) FAST_FUNC;
1335int check_password(const struct passwd *pw, const char *plaintext) FAST_FUNC;
1335int ask_and_check_password_extended(const struct passwd *pw, int timeout, const char *prompt) FAST_FUNC; 1336int ask_and_check_password_extended(const struct passwd *pw, int timeout, const char *prompt) FAST_FUNC;
1336int ask_and_check_password(const struct passwd *pw) FAST_FUNC; 1337int ask_and_check_password(const struct passwd *pw) FAST_FUNC;
1337/* Returns a malloced string */ 1338/* Returns a malloced string */