For code that was part of the C library, being used in C++, should you
always prefix std::
Specific examples:
std::fopen
std::fclose
std::atexit
Should I include
<cstdio> or <cstdlib>?
g++ 3.4.2 in mingw doesn't seem to care one way or the other. No
warnings or errors are produced even with -W -Wall.
Thanks,
--John Ratliff