commit 5b99df7b4969f20f7bb28203763365b2e377da64
parent 1fcd5c6df21a7de2461a19b67e7e691fc8d8df48
Author: Frederic Cambus <fred@statdns.com>
Date: Mon, 25 May 2020 17:06:58 +0200
Fix includes in drawchar.{c,h}.
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/drawchar.c b/src/drawchar.c
@@ -10,7 +10,6 @@
* See LICENSE file for details.
*/
-#include <inttypes.h>
#include <gd.h>
#include "drawchar.h"
diff --git a/src/drawchar.h b/src/drawchar.h
@@ -13,8 +13,8 @@
#ifndef DRAWCHAR_H
#define DRAWCHAR_H
+#include <stdint.h>
#include <gd.h>
-#include <sys/types.h>
void drawchar(gdImagePtr, const uint8_t *, uint32_t, uint32_t, uint32_t,
uint32_t, uint32_t, uint32_t, uint8_t);