#ifndef __STDIO_H__ #define __STDIO_H__ #include #include #ifdef __cplusplus extern "C" { #endif char getchar(void); void putcchar(char c); void puts(const char * s); #ifdef __cplusplus } #endif #endif // __STDIO_H__