diff options
author | Ron Yorston <rmy@pobox.com> | 2014-10-06 12:50:22 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-10-06 12:50:22 +0100 |
commit | b04d11dcbadda2620743a1dd923938f2f3043a38 (patch) | |
tree | 971afe425a81304b79e44122e220c7a69efe2616 /include/libbb.h | |
parent | 124bbf02948b7ac0babb4ead04acd1559db182d3 (diff) | |
parent | 760d035699c4a878f9109544c1d35ea0d5f6b76c (diff) | |
download | busybox-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.h | 5 |
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; | |||
403 | char *last_char_is(const char *s, int c) FAST_FUNC; | 403 | char *last_char_is(const char *s, int c) FAST_FUNC; |
404 | const char* endofname(const char *name) FAST_FUNC; | 404 | const char* endofname(const char *name) FAST_FUNC; |
405 | 405 | ||
406 | void ndelay_on(int fd) FAST_FUNC; | 406 | int ndelay_on(int fd) FAST_FUNC; |
407 | void ndelay_off(int fd) FAST_FUNC; | 407 | int ndelay_off(int fd) FAST_FUNC; |
408 | void close_on_exec_on(int fd) FAST_FUNC; | 408 | void close_on_exec_on(int fd) FAST_FUNC; |
409 | void xdup2(int, int) FAST_FUNC; | 409 | void xdup2(int, int) FAST_FUNC; |
410 | void xmove_fd(int, int) FAST_FUNC; | 410 | void 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) |
1333 | void setup_environment(const char *shell, int flags, const struct passwd *pw) FAST_FUNC; | 1333 | void setup_environment(const char *shell, int flags, const struct passwd *pw) FAST_FUNC; |
1334 | void nuke_str(char *str) FAST_FUNC; | 1334 | void nuke_str(char *str) FAST_FUNC; |
1335 | int check_password(const struct passwd *pw, const char *plaintext) FAST_FUNC; | ||
1335 | int ask_and_check_password_extended(const struct passwd *pw, int timeout, const char *prompt) FAST_FUNC; | 1336 | int ask_and_check_password_extended(const struct passwd *pw, int timeout, const char *prompt) FAST_FUNC; |
1336 | int ask_and_check_password(const struct passwd *pw) FAST_FUNC; | 1337 | int ask_and_check_password(const struct passwd *pw) FAST_FUNC; |
1337 | /* Returns a malloced string */ | 1338 | /* Returns a malloced string */ |