diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 152b87099..aba9316d1 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -250,8 +250,10 @@ extern char bb_process_escape_sequence(const char **ptr); | |||
250 | /* TODO: sometimes modifies its parameter, which | 250 | /* TODO: sometimes modifies its parameter, which |
251 | * makes it rather inconvenient at times: */ | 251 | * makes it rather inconvenient at times: */ |
252 | extern char *bb_get_last_path_component(char *path); | 252 | extern char *bb_get_last_path_component(char *path); |
253 | extern int ndelay_on(int fd); | 253 | |
254 | extern int ndelay_off(int fd); | 254 | int ndelay_on(int fd); |
255 | int ndelay_off(int fd); | ||
256 | void xmove_fd(int, int); | ||
255 | 257 | ||
256 | 258 | ||
257 | extern DIR *xopendir(const char *path); | 259 | extern DIR *xopendir(const char *path); |
@@ -616,6 +618,8 @@ extern int index_in_substr_array(const char * const string_array[], const char * | |||
616 | extern void print_login_issue(const char *issue_file, const char *tty); | 618 | extern void print_login_issue(const char *issue_file, const char *tty); |
617 | extern void print_login_prompt(void); | 619 | extern void print_login_prompt(void); |
618 | #ifdef BB_NOMMU | 620 | #ifdef BB_NOMMU |
621 | extern pid_t BUG_fork_is_unavailable_on_nommu(void); | ||
622 | #define fork() BUG_fork_is_unavailable_on_nommu() | ||
619 | extern void vfork_daemon_rexec(int nochdir, int noclose, char **argv); | 623 | extern void vfork_daemon_rexec(int nochdir, int noclose, char **argv); |
620 | extern smallint re_execed; | 624 | extern smallint re_execed; |
621 | #endif | 625 | #endif |