Hi all
When I declare the following structure in my code
static struct rwtable{ /* reserved word table */
char *rw_name; /* representation */
int rw_yylex; /* yylex() value */
}rwtable[] = {" ",0};
I am getting the warning that aggregate has a partly braketted initialiser
help me to resolve this warning.
regards
srikar
When I declare the following structure in my code
static struct rwtable{ /* reserved word table */
char *rw_name; /* representation */
int rw_yylex; /* yylex() value */
}rwtable[] = {" ",0};
I am getting the warning that aggregate has a partly braketted initialiser
help me to resolve this warning.
regards
srikar
Comment