From bc8c2abb3786846565978647635fe79a9617a8e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 24 Jun 2012 21:42:48 +0000 Subject: [PATCH] Boost Jam code cleanup - minor stylistic changes. [SVN r79066] --- src/engine/execcmd.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/engine/execcmd.h b/src/engine/execcmd.h index 488978f49..950563d4a 100644 --- a/src/engine/execcmd.h +++ b/src/engine/execcmd.h @@ -17,6 +17,7 @@ #include "lists.h" #include "strings.h" + #include typedef struct timing_info @@ -34,7 +35,12 @@ typedef void (* ExecCmdCallback) timing_info *, char const * invoked_command, char const * command_output -) ; +); + +/* Status codes passed to ExecCmdCallback routines. */ +#define EXEC_CMD_OK 0 +#define EXEC_CMD_FAIL 1 +#define EXEC_CMD_INTR 2 void exec_cmd ( @@ -48,10 +54,6 @@ void exec_cmd int exec_wait(); -#define EXEC_CMD_OK 0 -#define EXEC_CMD_FAIL 1 -#define EXEC_CMD_INTR 2 - /****************************************************************************** * *