1 2 3 4 5 6 7 8 9 10
#include "cmd.h" extern int yyparse(); int main(int argc, char **argv) { while (true) { yyparse(); } return 0; }