/* === This file is NOT part of the LLVM Project === */ // iostream.h standard header #ifdef __ghs__ #ifndef _GHS_IOSTREAM_H_ #define _GHS_IOSTREAM_H_ #include using std::cin; using std::cout; using std::cerr; using std::clog; using std::endl; using std::flush; #endif // _GHS_IOSTREAM_H_ #endif // __ghs__