#ifndef _IOSTREAM_H #define _IOSTREAM_H namespace std { class ostream { public: ostream& operator<<(const char *s) {return *this;} }; extern ostream cout; extern ostream cerr; extern const char *endl; } #endif /*!_IOSTREAM_H*/