From: Lennart Poettering Date: Wed, 28 Feb 2018 22:24:50 +0000 (+0100) Subject: fd-util: drop stdio_unset_cloexec(), it's not used anymore X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d5c8234a003cc47535d0ceef4836fabe30ff91c6;p=elogind.git fd-util: drop stdio_unset_cloexec(), it's not used anymore --- diff --git a/src/basic/fd-util.c b/src/basic/fd-util.c index 87a35d35c..c67d4243a 100644 --- a/src/basic/fd-util.c +++ b/src/basic/fd-util.c @@ -193,12 +193,6 @@ int fd_cloexec(int fd, bool cloexec) { return 0; } -void stdio_unset_cloexec(void) { - (void) fd_cloexec(STDIN_FILENO, false); - (void) fd_cloexec(STDOUT_FILENO, false); - (void) fd_cloexec(STDERR_FILENO, false); -} - _pure_ static bool fd_in_set(int fd, const int fdset[], unsigned n_fdset) { unsigned i; diff --git a/src/basic/fd-util.h b/src/basic/fd-util.h index 7c39257cd..56fae8a47 100644 --- a/src/basic/fd-util.h +++ b/src/basic/fd-util.h @@ -73,7 +73,6 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(DIR*, closedir); int fd_nonblock(int fd, bool nonblock); int fd_cloexec(int fd, bool cloexec); -void stdio_unset_cloexec(void); int close_all_fds(const int except[], unsigned n_except);