From 079baeb0dd178c4a2ad756dc8efc8ea77889d7b6 Mon Sep 17 00:00:00 2001 From: Frank Benkstein Date: Tue, 2 Oct 2007 12:37:36 +0200 Subject: [PATCH] src/process.{c,h}: make create_child function boolean --- src/process.c | 3 ++- src/process.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/process.c b/src/process.c index a5f6ac6..d61c471 100644 --- a/src/process.c +++ b/src/process.c @@ -131,6 +131,7 @@ void close_all_fds(void) } } -void create_child(struct child_process *child) +bool create_child(struct child_process *child) { + return false; } diff --git a/src/process.h b/src/process.h index 976fd6a..e59144a 100644 --- a/src/process.h +++ b/src/process.h @@ -57,4 +57,4 @@ struct child_process { * connected to the respective descriptor of the child. The file descriptor of * the other end is stored in the field after the call. It is up to the caller * to close the pipe descriptor(s). */ -void create_child(struct child_process *child); +bool create_child(struct child_process *child); -- 2.11.4.GIT