So whevenever I try and compile my lex.yy.c file, it gives me the following error
lex.yy.c:1662: error: conflicting types for ‘yy_scan_string’
lex.yy.c:310: note: previous declaration of ‘yy_scan_string’ was here
lex.yy.c:1675: error: conflicting types for ‘yy_scan_bytes’
lex.yy.c:311: note: previous declaration of ‘yy_scan_bytes’ was here
lex.yy.c:1709: error: conflicting types for ‘yy_fatal_error’
lex.yy.c:359: note: previous declaration of ‘yy_fatal_error’ was here
I have no clue why. These functions are defined by using flex, and I haven't touched them, so what could the problem be?
Thanks.