diff options
author | René Scharfe <l.s.r@web.de> | 2014-08-19 21:10:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-08-20 09:54:58 -0700 |
commit | 483bbd4e4ce8a5c717cd47d732893317a14c965a (patch) | |
tree | 65987463920d8dfe402f8abdc7febbb62332d30b /run-command.h | |
parent | d3180279322c7450a47decf8833de47f444ca93f (diff) | |
download | git-483bbd4e4ce8a5c717cd47d732893317a14c965a.tar.gz git-483bbd4e4ce8a5c717cd47d732893317a14c965a.tar.xz |
run-command: introduce child_process_init()
Add a helper function for initializing those struct child_process
variables for which the macro CHILD_PROCESS_INIT can't be used.
Suggested-by: Jeff King <peff@peff.net>
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run-command.h b/run-command.h index 5484400aa..1b135d1c9 100644 --- a/run-command.h +++ b/run-command.h @@ -45,6 +45,7 @@ struct child_process { }; #define CHILD_PROCESS_INIT { NULL, ARGV_ARRAY_INIT } +void child_process_init(struct child_process *); int start_command(struct child_process *); int finish_command(struct child_process *); |