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