DEFECT_SGICC_STRING_HEADER
Systems: SGI IRIX6
Compilers: SGI MipsPro 7.1nx
The header string is missing from the Standard C++ Library. The vendor claims that users should use mstring.h as a replacement. This "mstring" header declares the "Modena" string class, which is an adequate substitute for the Standard C++ string class for most purposes.
// Include the string class header
#if defined(DEFECT_SGICC_STRING_HEADER)
#include <mstring.h>
#else // Standard C++
#include <string>
#endif