]> granicus.if.org Git - graphviz/commitdiff
postproc.c: [nfc] use a C99 bool for 'Flip' instead of a boolean
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 19 Dec 2021 20:13:18 +0000 (12:13 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 20 Dec 2021 00:14:25 +0000 (16:14 -0800)
lib/common/postproc.c

index 2cba534295de6e4dcbe151d4231aac3e6f28297f..1daa7a8aedb3fda0c44c0d21314857f69f6c997c 100644 (file)
 
 #include <common/render.h>
 #include <label/xlabels.h>
+#include <stdbool.h>
 
 static int Rankdir;
-static boolean Flip;
+static bool Flip;
 static pointf Offset;
 
 static void place_flip_graph_label(graph_t * g);