From 59f35a43d5db6ac2af695038e3cdda8c15182e0e Mon Sep 17 00:00:00 2001 From: batt Date: Thu, 21 May 2009 13:11:33 +0000 Subject: [PATCH] Move headers inside header guard; fix pasto. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2695 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/fs/fatfs/src/ff.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bertos/fs/fatfs/src/ff.h b/bertos/fs/fatfs/src/ff.h index 10ae4c5b..5461efe9 100644 --- a/bertos/fs/fatfs/src/ff.h +++ b/bertos/fs/fatfs/src/ff.h @@ -13,9 +13,6 @@ / * Redistributions of source code must retain the above copyright notice. /----------------------------------------------------------------------------*/ -#include "integer.h" -#include "cfg/cfg_fat.h" - /*---------------------------------------------------------------------------/ / FatFs Configuration Options / @@ -26,6 +23,9 @@ #ifndef _FATFS #define _FATFS +#include "integer.h" +#include "cfg/cfg_fat.h" + #ifndef _WORD_ACCESS #define _WORD_ACCESS 0 #endif @@ -72,7 +72,7 @@ #ifndef _USE_MKFS #define _USE_MKFS 0 -#define +#endif /* To enable f_mkfs function, set _USE_MKFS to 1 and set _FS_READONLY to 0 */ -- 2.25.1