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