From: Matthew Fernandez Date: Fri, 5 Jun 2020 23:52:32 +0000 (-0700) Subject: remove unused scndump function X-Git-Tag: 2.46.0~20^2^2~14^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19477a021657a258b8ca482585d25ee9d8d589b0;p=graphviz remove unused scndump function --- diff --git a/lib/cgraph/graph.c b/lib/cgraph/graph.c index 972e3bf68..6301f31fa 100644 --- a/lib/cgraph/graph.c +++ b/lib/cgraph/graph.c @@ -269,11 +269,3 @@ Agdesc_t Agundirected = { 0, 0, 0, 1 }; Agdesc_t Agstrictundirected = { 0, 1, 0, 1 }; Agdisc_t AgDefaultDisc = { &AgMemDisc, &AgIdDisc, &AgIoDisc }; - - -#include -void scndump(Agraph_t *g, char *file) -{ - FILE * f = fopen(file,"w"); - if (f) {agwrite(g,f); fclose(f);} -}