From d5c8234a003cc47535d0ceef4836fabe30ff91c6 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 28 Feb 2018 23:24:50 +0100 Subject: [PATCH] fd-util: drop stdio_unset_cloexec(), it's not used anymore --- src/basic/fd-util.c | 6 ------ src/basic/fd-util.h | 1 - 2 files changed, 7 deletions(-) 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); -- 2.30.2