Files
Custom-Operating-System/libs/libcxx/init/_lib.cpp

15 lines
183 B
C++
Raw Normal View History

2025-02-12 09:54:05 -05:00
namespace std {
extern int _ios_init();
extern int _ios_deinit();
} // namespace std
void _libcpp_init()
{
std::_ios_init();
}
void _libcpp_deinit()
{
std::_ios_deinit();
}