I want to use std::cout, which for start, uses this function:
std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, int)
With mangled name
_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i
Which appears correctly in libstdc++11.a
But I don't know in which part of the gcc libstdc++ implementation (https://github.com/gcc-mirror/gcc) is
I searched everywhere, but it doesn't seem to be there, nore in glibc (haven't looked really in depth)
I want to find the original implementation so I can base mine on that
Hope you can help me! Thanks
