From 71c8e790559d1dc6a699d27541ebde118b359815 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Wed, 22 Dec 2021 08:15:29 -0800 Subject: [PATCH] prototype osage_layout and osage_cleanup in osage.h These are the only functions lib/osage exports. Yet neither were prototyped in a header. It seems like this header could now be #included in plugin/neato_layout/gvlayout_neato_layout.c, removing the need for that file to prototype these functions. Except that it gives slightly different prototypes for them. --- lib/osage/osage.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/osage/osage.h b/lib/osage/osage.h index 39614e240..799ef74b6 100644 --- a/lib/osage/osage.h +++ b/lib/osage/osage.h @@ -10,10 +10,15 @@ #pragma once +#include + #ifdef __cplusplus extern "C" { #endif +void osage_layout(Agraph_t *g); +void osage_cleanup(Agraph_t *g); + #ifdef __cplusplus } #endif -- 2.40.0