commit 4303a4421009a2f68fc59c775f83230b882ed6c2
parent 26301802dbf761e678e86a5dfc9d4d4a8f4e83ca
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 26 Sep 2018 11:18:13 +0200
Fix includes to not use header which might not be installed yet
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/output.c b/src/output.c
@@ -9,8 +9,8 @@
// See the LICENSE file for details.
//
+#include "ansilove.h"
#include "output.h"
-#include <ansilove.h>
int output(struct ansilove_ctx *ctx, gdImagePtr im_Source, int retinaScaleFactor) {
// XXX Error handling
diff --git a/src/output.h b/src/output.h
@@ -12,7 +12,6 @@
#include <gd.h>
#include <stdbool.h>
#include <stdlib.h>
-#include <ansilove.h>
#ifndef output_h
#define output_h