| 1 | #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED |
| 2 | #define BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED |
| 3 | |
| 4 | // Copyright 2018, 2020, 2021 Peter Dimov |
| 5 | // |
| 6 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 7 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 8 | // |
| 9 | // See library home page at http://www.boost.org/libs/system |
| 10 | |
| 11 | #include <cstdio> |
| 12 | |
| 13 | // |
| 14 | |
| 15 | namespace boost |
| 16 | { |
| 17 | namespace system |
| 18 | { |
| 19 | namespace detail |
| 20 | { |
| 21 | |
| 22 | using std::snprintf; |
| 23 | |
| 24 | } // namespace detail |
| 25 | } // namespace system |
| 26 | } // namespace boost |
| 27 | |
| 28 | #endif // #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED |
| 29 | |