summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/prebuilt/hello.cpp
blob: 7d027171bc02e410cad93d3b018daa46f6fafe49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  Copyright (c) 2003 Vladimir Prus
//
//  Distributed under the Boost Software License, Version 1.0. (See
//  accompanying file LICENSE.txt or copy at
//  https://www.bfgroup.xyz/b2/LICENSE.txt)

#include <a.h>

int main()
{
    #ifdef RELEASE
    release();
    #else
    debug();
    #endif
    return 0;
}