1 2 3 4 5 6 7 8 9
typedef struct FILE FILE; extern FILE * __attribute__((dllimport)) const stdout; int main(int argc, char ** argv) { fflush(stdout); return argc; }