diff options
Diffstat (limited to 'include/fat.h')
| -rw-r--r-- | include/fat.h | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/include/fat.h b/include/fat.h index 706cd7a4b..b28c3fd66 100644 --- a/include/fat.h +++ b/include/fat.h @@ -98,9 +98,6 @@  #endif  #endif -#define TOLOWER(c)	if((c) >= 'A' && (c) <= 'Z'){(c)+=('a' - 'A');} -#define TOUPPER(c)	if ((c) >= 'a' && (c) <= 'z') \ -				(c) -= ('a' - 'A');  #define START(dent)	(FAT2CPU16((dent)->start) \  			+ (mydata->fatsize != 32 ? 0 : \  			  (FAT2CPU16((dent)->starthi) << 16))) |