1 /*
2 Copyright Rene Rivera 2015
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7 
8 /*
9  * Simple program that just prints out the externally
10  * defined CHECK_VALUE def. It's used to test the check
11  * program and the related BB support.
12  */
13 
14 #include <boost/predef.h>
15 #include <iostream>
16 #include <string>
17 
18 #ifndef CHECK_VALUE
19 #define CHECK_VALUE "undefined"
20 #endif
21 
main()22 int main()
23 {
24 	std::cout << "CHECK_VALUE == " << CHECK_VALUE << "\n" ;
25 	return 0;
26 }
27