summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/complex-testing/post.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/build/example/complex-testing/post.cpp')
-rw-r--r--src/boost/tools/build/example/complex-testing/post.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/boost/tools/build/example/complex-testing/post.cpp b/src/boost/tools/build/example/complex-testing/post.cpp
new file mode 100644
index 000000000..6282e8f24
--- /dev/null
+++ b/src/boost/tools/build/example/complex-testing/post.cpp
@@ -0,0 +1,17 @@
+// Copyright (c) 2014 Rene Rivera
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+// http://www.boost.org
+//
+
+#include <iostream>
+#include <cstdlib>
+
+int main(int argc, char *argv[])
+{
+ std::cout << argv[1] << "\n";
+ return EXIT_SUCCESS;
+}