1// (C) Copyright John Maddock 2001. 2// Use, modification and distribution are subject to the 3// Boost Software License, Version 1.0. (See accompanying file 4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6// See http://www.boost.org/libs/config for most recent version. 7 8// MACRO: BOOST_HAS_MS_INT64 9// TITLE: __int64 10// DESCRIPTION: The platform supports Microsoft style __int64. 11 12#include <cstdlib> 13 14 15namespace boost_has_ms_int64{ 16 17int test() 18{ 19 __int64 lli = 0i64; 20 unsigned __int64 ulli = 0ui64; 21 (void)lli; 22 (void)ulli; 23 return 0; 24} 25 26} 27 28 29 30 31 32 33