removed unneccessary includes

master
Ondřej Hruška 9 years ago
parent 0a6525f0a3
commit adae8b8cdf
  1. 2
      fat16.c
  2. 3
      fat16.h
  3. 3
      fat16_internal.h

@ -1,4 +1,3 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
@ -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"

@ -1,5 +1,8 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
/**
* Abstract block device interface
*

@ -1,5 +1,8 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
// Internal types and stuff that is needed in the header for declarations,
// but is not a part of the public API.

Loading…
Cancel
Save