]> git.saurik.com Git - bison.git/blobdiff - src/symlist.c
Port to SunOS 4.1.4, which lacks strtoul and strerror.
[bison.git] / src / symlist.c
index 662f1f7bc1ffa4a9cd5448b12a12ff3eb93b39c9..106db46cb2f5f662f0fcd3937fc4fd8356334b8d 100644 (file)
@@ -49,10 +49,14 @@ symbol_list_new (symbol *sym, location loc)
 `------------------*/
 
 void
 `------------------*/
 
 void
-symbol_list_print (FILE *f, symbol_list *l)
+symbol_list_print (symbol_list *l, FILE *f)
 {
 {
-  for (/* Nothing. */; l; l = l->next)
-    symbol_print (f, l->sym);
+  for (/* Nothing. */; l && l->sym; l = l->next)
+    {
+      symbol_print (l->sym, f);
+      if (l && l->sym)
+       fputc (' ', f);
+    }
 }
 
 
 }