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