#ifndef STDIO_H
#define STDIO_H
#include <stdio.h>
typeof (fopen) __fopen;
typeof (freopen) __freopen;
typeof (fclose) __fclose;
typeof (fseek) __fseek;
typeof (ftell) __ftell;
typeof (rewind) __rewind;
typeof (fgetpos) __fgetpos;
typeof (fsetpos) __fsetpos;
typeof (fread) __fread;
typeof (fwrite) __fwrite;
typeof (fgetc) __fgetc;
typeof (fgets) __fgets;
typeof (getc) __getc;
typeof (getchar) __getchar;
typeof (gets) __gets;
typeof (ungetc) __ungetc;
typeof (fputc) __fputc;
typeof (fputs) __fputs;
typeof (putc) __putc;
typeof (putchar) __putchar;
typeof (puts) __puts;
typeof (clearerr) __clearerr;
typeof (feof) __feof;
typeof (ferror) __ferror;
typeof (fflush) __fflush;
typeof (setbuf) __setbuf;
typeof (setvbuf) __setvbuf;
typeof (remove) __remove;
typeof (rename) __rename;
typeof (fdopen) __fdopen;
typeof (setbuffer) __setbuffer;
typeof (setlinebuf) __setlinebuf;
typeof (fileno) __fileno;
void __stdio_init();
void __stdio_fini();
#endif