summaryrefslogtreecommitdiffstats
path: root/src/edge.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 13:20:11 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 18:32:12 +0100
commit4295f103d71d947e3ed92731e648ba409d3664ac (patch)
tree868aa0b684edc5f64400721188901da6b7c6269b /src/edge.c
parent93fee4579d013ba36d1eedc273fc2d9385d76e19 (diff)
downloadganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.gz
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.bz2
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.zip
Clean up includes
Diffstat (limited to 'src/edge.c')
-rw-r--r--src/edge.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/edge.c b/src/edge.c
index 417030a..a1a5df2 100644
--- a/src/edge.c
+++ b/src/edge.c
@@ -13,21 +13,25 @@
* with Ganv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <math.h>
-#include <string.h>
-
-#include <cairo.h>
+#include "boilerplate.h"
+#include "color.h"
+#include "ganv-private.h"
+#include "gettext.h"
#include "ganv/canvas.h"
#include "ganv/edge.h"
+#include "ganv/item.h"
#include "ganv/node.h"
+#include "ganv/types.h"
-#include "./boilerplate.h"
-#include "./color.h"
-#include "./gettext.h"
+#include <cairo.h>
+#include <glib-object.h>
+#include <glib.h>
+#include <gtk/gtk.h>
+#include <stdarg.h>
-#include "color.h"
-#include "ganv-private.h"
+#include <math.h>
+#include <string.h>
#define ARROW_DEPTH 32
#define ARROW_BREADTH 32