svn path=/trunk/yasm/; revision=224
Fatal(FATAL_NOMEM);
rec->type = type;
rec->value = 0;
+ rec->filename = strdup(filename);
rec->line = line_number;
rec->status = SYM_NOSTATUS;
char *name;
SymType type;
SymStatus status;
- int line; /* line symbol was first declared or used on */
+ char *filename; /* file and line */
+ int line; /* symbol was first declared or used on */
double value;
} symrec;
Fatal(FATAL_NOMEM);
rec->type = type;
rec->value = 0;
+ rec->filename = strdup(filename);
rec->line = line_number;
rec->status = SYM_NOSTATUS;
char *name;
SymType type;
SymStatus status;
- int line; /* line symbol was first declared or used on */
+ char *filename; /* file and line */
+ int line; /* symbol was first declared or used on */
double value;
} symrec;