From e80e6631e4c259e2e217f8425900b56002850a40 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 11 Nov 2021 17:29:36 +0100 Subject: [PATCH] Remove duplicate function declaration The function process_terminate() was declared twice. --- app/src/util/process.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/util/process.h b/app/src/util/process.h index d609ae71..08a70657 100644 --- a/app/src/util/process.h +++ b/app/src/util/process.h @@ -47,9 +47,6 @@ process_execute_redirect(const char *const argv[], process_t *process, pipe_t *pipe_stdin, pipe_t *pipe_stdout, pipe_t *pipe_stderr); -bool -process_terminate(process_t pid); - // kill the process bool process_terminate(process_t pid);