blob: f21370728e464da6890f519040ce552305192547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : build/diagnostics.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/diagnostics>
#include <iostream>
using namespace std;
namespace build
{
void
print_process (const char* const* args)
{
for (const char* const* p (args); *p != nullptr; p++)
cerr << (p != args ? " " : "") << *p;
cerr << endl;
}
}
|