summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/chrono/test/intmax_c.cpp
blob: e3dab7aca06824e658c8dbc1a02f33568ab17664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//  intmax_c.cpp  --------------------------------------------------------------//

//  Copyright 2010 Vicente J. Botet Escriba

//  Distributed under the Boost Software License, Version 1.0.
//  See http://www.boost.org/LICENSE_1_0.txt

#include <boost/cstdint.hpp>

#ifdef INTMAX_C
#define BOOST_INTMAX_C(a) INTMAX_C(a)
#else
#define BOOST_INTMAX_C(a) a##LL
#endif

boost::intmax_t i = BOOST_INTMAX_C(1000000000);
int main() {
    return (i);
}