12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
- #define BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
- #include <cstdio>
- namespace boost
- {
- namespace system
- {
- namespace detail
- {
- using std::snprintf;
- }
- }
- }
- #endif
|