From adae8b8cdf3a969ce6704674c73c13c3b5141249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Tue, 9 Jun 2015 22:10:17 +0200 Subject: [PATCH] removed unneccessary includes --- fat16.c | 2 -- fat16.h | 3 +++ fat16_internal.h | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/fat16.c b/fat16.c index a7958ee..c4f9f63 100644 --- a/fat16.c +++ b/fat16.c @@ -1,4 +1,3 @@ -#include #include #include #include @@ -1122,7 +1121,6 @@ bool fat16_delete(FAT16_FILE* file) { case FT_DELETED: case FT_NONE: - printf("NONE OR DEL\n"); return true; // "deleted successfully" case FT_SUBDIR:; // semicolon needed to allow declaration after "case" diff --git a/fat16.h b/fat16.h index 7db054d..477305a 100644 --- a/fat16.h +++ b/fat16.h @@ -1,5 +1,8 @@ #pragma once +#include +#include + /** * Abstract block device interface * diff --git a/fat16_internal.h b/fat16_internal.h index d723ef5..9f196e6 100644 --- a/fat16_internal.h +++ b/fat16_internal.h @@ -1,5 +1,8 @@ #pragma once +#include +#include + // Internal types and stuff that is needed in the header for declarations, // but is not a part of the public API.