From 5fc9a3c31e1d6462c5e65bdddbed55aed5be52be Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Fri, 24 Sep 2021 09:28:55 -0700 Subject: [PATCH] exec.h: remove unused declaration --- src/exec.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/exec.h b/src/exec.h index 6a97263c6..873ff3a3c 100644 --- a/src/exec.h +++ b/src/exec.h @@ -35,9 +35,6 @@ int exec_subshell(const wcstring &cmd, parser_t &parser, wcstring_list_t &output int exec_subshell_for_expand(const wcstring &cmd, parser_t &parser, const job_group_ref_t &job_group, wcstring_list_t &outputs); -/// Loops over close until the syscall was run without being interrupted. -void exec_close(int fd); - /// Add signals that should be masked for external processes in this job. bool blocked_signals_for_job(const job_t &job, sigset_t *sigmask);