blob: 59baf0a963239d90c847064f0847c357e1efcd9f [file] [log] [blame] [raw]
#include_next <stdio.h>
#ifndef _PIAO_STDIO_H
#define _PIAO_STDIO_H
//#undef fgetc
#undef getc
#undef getchar
//#define fgetc(f) (((f)==stdin)?'w':fgetc(f))
//#define getc(f) 'w'
#define getc(f) (((f)==stdin||__LINE__%6==4)?'w':fgetc(f))
#define getchar() 'w'
#endif