4cb4bdc85f
the -U command line option, and one via file scanning. Turns out only the second would increment the number of global names, so adding names with -U would cause names found via scanning to fall off the end of the list! This wouldn't cause linker errors because fixups don't use the list, but would cause the generated symbol table in the output to be incorrect.
10 lines
230 B
C
10 lines
230 B
C
#ifndef SYM_H
|
|
#define SYM_H
|
|
|
|
extern unsigned short NLocals; /* Number of local names to be saved. */
|
|
extern unsigned short NGlobals; /* Number of global names. */
|
|
|
|
extern void entername(struct outname* name, int hashval);
|
|
|
|
#endif
|