1 //  test_duration.cpp  ----------------------------------------------------------//
2 
3 //  Copyright 2009 Vicente J. Botet Escriba
4 
5 //  Distributed under the Boost Software License, Version 1.0.
6 //  See http://www.boost.org/LICENSE_1_0.txt
7 
8 #if !defined(__GNUC__)
9 
10 #define min(A,B) ((A)<(B)?(A):(B))
11 #define max(A,B) ((A)>(B)?(A):(B))
12 
13 #include <boost/chrono/chrono.hpp>
14 
15 #endif
16 
17 
18