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.