/usr/include/stxxl/bits
NameSizeModeActions
algo/-0755rm
common/-0755rm
compat/-0755rm
containers/-0755rm
io/-0755rm
mng/-0755rm
stream/-0755rm
utils/-0755rm
config.h37370644editdlrm
config.h.in43730644editdlrm
defines.h36440644editdlrm
deprecated.h11610644editdlrm
libstxxl.h7520644editdlrm
msvc_compatibility.h10530644editdlrm
namespace.h6580644editdlrm
noncopyable.h10850644editdlrm
parallel.h63150644editdlrm
singleton.h22360644editdlrm
unused.h7930644editdlrm
verbose.h83920644editdlrm
version.h29740644editdlrm
Edit: /usr/include/stxxl/bits/msvc_compatibility.h (1053B)
/*************************************************************************** * include/stxxl/bits/msvc_compatibility.h * * Part of the STXXL. See http://stxxl.sourceforge.net * * Copyright (C) 2009, 2011 Andreas Beckmann * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) **************************************************************************/ #ifndef STXXL_MSVC_COMPATIBILITY_HEADER #define STXXL_MSVC_COMPATIBILITY_HEADER #include #if STXXL_MSVC #include inline double log2(double x) { return (log(x) / log(2.)); } // http://msdn.microsoft.com/en-us/library/2ts7cx93.aspx #define snprintf _snprintf // http://msdn.microsoft.com/en-us/library/h80404d3.aspx #define strtoll _strtoi64 // http://msdn.microsoft.com/en-us/library/85zk715d.aspx #define strtoull _strtoui64 #endif // STXXL_MSVC #endif // !STXXL_MSVC_COMPATIBILITY_HEADER // vim: et:ts=4:sw=4