1 2 3 4 5 6 7 8 9 10
#ifndef _STDIO_H #define _STDIO_H #include <stdarg.h> int printf(char*, ...); int vsprintf(char*, char*, va_list); #endif