#ifndef CRASHPOWEROS_STDIO_H #define CRASHPOWEROS_STDIO_H #include #include #include void put_char(char a); int printf(const char* fmt, ...); int puts(const char *s); int vsprintf(char *buf, const char *fmt, va_list args); #endif