]> granicus.if.org Git - graphviz/commitdiff
common: inline and remove 'agputs'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 20 Apr 2022 02:42:20 +0000 (19:42 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Apr 2022 23:50:15 +0000 (16:50 -0700)
lib/common/output.c

index 830ff1c8ff4a509c00c5339b83e42872835e48b1..36f8f6ce80efa660371341013bbf6615f22b522a 100644 (file)
@@ -28,11 +28,6 @@ double yDir (double y)
 
 static int (*print)(void *chan, const char *format, ...);
 
-static void agputs (const char* s, FILE* fp)
-{
-  print(fp, "%s", s);
-}
-
 static void printpoint(FILE * f, pointf p)
 {
   print(f, " %.5g %.5g", PS2INCH(p.x), PS2INCH(YDIR(p.y)));
@@ -144,7 +139,7 @@ void write_plain(GVJ_t *job, graph_t *g, FILE *f, bool extend) {
                  late_nnstring(e, E_color, DEFAULT_COLOR));
        }
     }
-    agputs("stop\n", f);
+    print(f, "stop\n");
 }
 
 static void set_record_rects(node_t * n, field_t * f, agxbuf * xb)