]> git.saurik.com Git - bison.git/blobdiff - lib/bitset.c
Undo the parts of the unlocked-I/O change that substituted
[bison.git] / lib / bitset.c
index 24bfb879d05730f1d98afb550426eb9b82944f24..ddbef843668f3cc797abb32e38777a095eefbc88 100644 (file)
@@ -303,7 +303,7 @@ bitset_print (FILE *file, bitset bset, bool verbose)
   {
     if (pos > 70)
       {
-       fputc ('\n', file);
+       fprintf (file, "\n");
        pos = 0;
       }
 
@@ -312,7 +312,7 @@ bitset_print (FILE *file, bitset bset, bool verbose)
   };
 
   if (verbose)
-    fputs ("}\n", file);
+    fprintf (file, "}\n");
 }