replaced "integer.h" with stdint.h

This commit is contained in:
Markus Fröschle
2012-12-10 12:15:19 +00:00
parent fef95271a7
commit 56f5457dbb
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ extern "C" {
#define _USE_WRITE 1 /* 1: Enable disk_write function */ #define _USE_WRITE 1 /* 1: Enable disk_write function */
#define _USE_IOCTL 1 /* 1: Enable disk_ioctl fucntion */ #define _USE_IOCTL 1 /* 1: Enable disk_ioctl fucntion */
#include "integer.h" #include <stdint.h>
/* Status of Disk Functions */ /* Status of Disk Functions */

View File

@@ -21,7 +21,7 @@
extern "C" { extern "C" {
#endif #endif
#include "integer.h" /* Basic integer types */ #include <stdint.h>
#include "ffconf.h" /* FatFs configuration options */ #include "ffconf.h" /* FatFs configuration options */
#if _FATFS != _FFCONF #if _FATFS != _FFCONF