diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-30 23:50:48 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-30 23:50:48 +0000 |
commit | 96e1b38586e80a0f014038bf4fdf4689c668fbd6 (patch) | |
tree | d7f6a7866700601598cfcc006b7dcb6cb4a7c07e /include | |
parent | deabacdf91c6d1c3cfcdb4cd06780807193de81d (diff) | |
download | busybox-w32-96e1b38586e80a0f014038bf4fdf4689c668fbd6.tar.gz busybox-w32-96e1b38586e80a0f014038bf4fdf4689c668fbd6.tar.bz2 busybox-w32-96e1b38586e80a0f014038bf4fdf4689c668fbd6.zip |
introduce and use close_on_exec_on(fd). -50 bytes.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index e3f9c4957..a8463ae49 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -248,6 +248,7 @@ extern char *bb_get_last_path_component_nostrip(const char *path); | |||
248 | 248 | ||
249 | int ndelay_on(int fd); | 249 | int ndelay_on(int fd); |
250 | int ndelay_off(int fd); | 250 | int ndelay_off(int fd); |
251 | int close_on_exec_on(int fd); | ||
251 | void xdup2(int, int); | 252 | void xdup2(int, int); |
252 | void xmove_fd(int, int); | 253 | void xmove_fd(int, int); |
253 | 254 | ||