29 lines
592 B
C++
29 lines
592 B
C++
#ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
|
|
#define BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
|
|
|
|
// Copyright 2018, 2020, 2021 Peter Dimov
|
|
//
|
|
// 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)
|
|
//
|
|
// See library home page at http://www.boost.org/libs/system
|
|
|
|
#include <cstdio>
|
|
|
|
//
|
|
|
|
namespace boost
|
|
{
|
|
namespace system
|
|
{
|
|
namespace detail
|
|
{
|
|
|
|
using std::snprintf;
|
|
|
|
} // namespace detail
|
|
} // namespace system
|
|
} // namespace boost
|
|
|
|
#endif // #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
|