Undefined Reference To yywrap
问题 I have a simple "language" that I'm using Flex(Lexical Analyzer), it's like this: /* Just like UNIX wc */ %{ int chars = 0; int words = 0; int lines = 0; %} %% [a-zA-Z]+ { words++; chars += strlen(yytext); } \n { chars++; lines++; } . { chars++; } %% int main() { yylex(); printf("%8d%8d%8d\n", lines, words, chars); } The I run a flex count.l , all goes ok without errors or warnings, then when I try to do a cc lex.yy.c I got this errors: ubuntu@eeepc:~/Desktop$ cc lex.yy.c /tmp/ccwwkhvq.o: In