#ifndef _STDIO_H #define _STDIO_H enum { EOF = -1 }; typedef struct __file FILE; FILE *fopen(const char *__path, const char *__mode); int printf(const char *__fmt, ...); int fprintf(FILE *__stream, const char *__fmt, ...); extern FILE *stdin, *stdout, *stderr; #endif