mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-25 19:56:30 +00:00
Add debug flag to command line interpretation.
This commit is contained in:
4
macros.c
4
macros.c
@@ -506,7 +506,7 @@ STREAM *expandmacro(
|
||||
/* dump_all_macros is a diagnostic function that's currently not
|
||||
used. I used it while debugging, and I haven't removed it. */
|
||||
|
||||
static void dump_all_macros(
|
||||
void dump_all_macros(
|
||||
void)
|
||||
{
|
||||
MACRO *mac;
|
||||
@@ -515,7 +515,7 @@ static void dump_all_macros(
|
||||
for (mac = (MACRO *) first_sym(¯o_st, &iter); mac != NULL; mac = (MACRO *) next_sym(¯o_st, &iter)) {
|
||||
dumpmacro(mac, lstfile);
|
||||
|
||||
printf("\n\n");
|
||||
fprintf(lstfile, "\n\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user