-/*-----------------------------------------.
-| Prepend SYMBOL at LOCATION to the LIST. |
-`-----------------------------------------*/
+/*------------------.
+| Print this list. |
+`------------------*/
+
+void
+symbol_list_print (symbol_list *l, FILE *f)
+{
+ for (/* Nothing. */; l && l->sym; l = l->next)
+ {
+ symbol_print (l->sym, f);
+ if (l && l->sym)
+ fputc (' ', f);
+ }
+}
+
+
+/*---------------------------------.
+| Prepend SYM at LOC to the LIST. |
+`---------------------------------*/