Buenas, al compilar me da el siguiente error:
In file included from traductor.c:3:
y.tab.c:59: error: syntax error before numeric constant
y en la correspondiente linea 59 de y.tab.c me aparece:
#ifndef YYTOKENTYPE
#define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
IDENTIFICADOR = 1, //ESTA ES LA 59
ES = 3,
PAREN_OPEN = 38,
PAREN_CLOSED = 39
};
#endif
Muchas gracias de nuevo por vuestra ayuda.