00001 #ifndef _ndk_stdio_h__ 00002 #define _ndk_stdio_h__ 00003 00004 //#define FILE int 00005 //typedef struct _IO_FILE FILE; 00006 typedef long FILE; 00007 00008 #define stdin ((FILE*)(0)) 00009 #define stdout ((FILE*)(1)) 00010 #define stderr ((FILE*)(2)) 00011 00012 int fprintf(FILE * stream, const char *format, ...); 00013 00014 #endif