commit 03e4f5ef7ec2deaae74c7f63b94fcaebf863f385
parent a6dd3b665f975fd22184f4f631cdfa59eb02cc81
Author: Frederic Cambus <fred@statdns.com>
Date: Mon, 2 Jul 2018 11:43:27 +0200
Remove now useless stdio headers
Diffstat:
7 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 2.6)
-set(LIB_VERSION_MAJOR 1)
+set(LIB_VERSION_MAJOR 0)
set(LIB_VERSION_MINOR 0)
set(LIB_VERSION_PATCH 0)
set(LIB_VERSION_STRING ${LIB_VERSION_MAJOR}.${LIB_VERSION_MINOR}.${LIB_VERSION_PATCH})
diff --git a/src/ansilove.h b/src/ansilove.h
@@ -19,7 +19,6 @@
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/drawchar.h b/src/drawchar.h
@@ -11,8 +11,7 @@
#include <gd.h>
#include <stdbool.h>
-#include <stdio.h>
-#include <stdlib.h>
+#include <stdint.h>
#ifndef drawchar_h
#define drawchar_h
diff --git a/src/explode.h b/src/explode.h
@@ -10,7 +10,6 @@
//
#include <stdint.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/fonts.h b/src/fonts.h
@@ -11,7 +11,6 @@
#include <stdbool.h>
#include <stdint.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/output.h b/src/output.h
@@ -11,7 +11,6 @@
#include <gd.h>
#include <stdbool.h>
-#include <stdio.h>
#include <stdlib.h>
#ifndef output_h
diff --git a/src/strtolower.h b/src/strtolower.h
@@ -10,7 +10,6 @@
//
#include <ctype.h>
-#include <stdio.h>
#include <stdlib.h>
#ifndef strtolower_h