diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 55510316b..6e37b8d04 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -348,9 +348,9 @@ extern char *bb_get_last_path_component_strip(char *path) FAST_FUNC; | |||
348 | /* "abc/def/" -> "" and it never modifies 'path' */ | 348 | /* "abc/def/" -> "" and it never modifies 'path' */ |
349 | extern char *bb_get_last_path_component_nostrip(const char *path) FAST_FUNC; | 349 | extern char *bb_get_last_path_component_nostrip(const char *path) FAST_FUNC; |
350 | 350 | ||
351 | int ndelay_on(int fd) FAST_FUNC; | 351 | void ndelay_on(int fd) FAST_FUNC; |
352 | int ndelay_off(int fd) FAST_FUNC; | 352 | void ndelay_off(int fd) FAST_FUNC; |
353 | int close_on_exec_on(int fd) FAST_FUNC; | 353 | void close_on_exec_on(int fd) FAST_FUNC; |
354 | void xdup2(int, int) FAST_FUNC; | 354 | void xdup2(int, int) FAST_FUNC; |
355 | void xmove_fd(int, int) FAST_FUNC; | 355 | void xmove_fd(int, int) FAST_FUNC; |
356 | 356 | ||