commit 8e141e53d32af5fb992a7df0e0946c4687d76f18
parent 885b214cb8bd49276afde39ed6f975e24c96532a
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 4 Jul 2018 11:33:47 +0200
Fix headers for drawchar()
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/drawchar.c b/src/drawchar.c
@@ -9,7 +9,7 @@
// See the LICENSE file for details.
//
-#include <gd.h>
+#include "drawchar.h"
// shared method for drawing characters
void drawchar(gdImagePtr im, const unsigned char *font_data, uint32_t bits,
diff --git a/src/drawchar.h b/src/drawchar.h
@@ -10,7 +10,6 @@
//
#include <gd.h>
-#include <stdbool.h>
#include <stdint.h>
#ifndef drawchar_h