2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Boost Jam code cleanup - minor stylistic changes.

[SVN r79066]
This commit is contained in:
Jurko Gospodnetić
2012-06-24 21:42:48 +00:00
parent d34ffa9d42
commit bc8c2abb37

View File

@@ -17,6 +17,7 @@
#include "lists.h"
#include "strings.h"
#include <time.h>
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
/******************************************************************************
* *