summaryrefslogtreecommitdiff
path: root/lib/fatfs/integer.h
diff options
context:
space:
mode:
authorAndrzej Tokarski <[email protected]>2022-11-21 21:45:10 +0100
committerGitHub <[email protected]>2022-11-21 21:45:10 +0100
commitb41f5eadb3143d0bfaf211d9bc84c95e5d623c29 (patch)
tree313da7c8988a2b443e6ab5647fa1177e84e424a6 /lib/fatfs/integer.h
parent89eac75085134d570dc26dffaf3d8f204aef5359 (diff)
parent4a2e424103b0a2626a6cb464a350c68ae109cc7e (diff)
Merge branch 'master' into midihost
Diffstat (limited to 'lib/fatfs/integer.h')
-rw-r--r--lib/fatfs/integer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/fatfs/integer.h b/lib/fatfs/integer.h
deleted file mode 100644
index f34f56d92..000000000
--- a/lib/fatfs/integer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*-------------------------------------------*/
-/* Integer type definitions for FatFs module */
-/*-------------------------------------------*/
-
-#ifndef _INTEGER
-#define _INTEGER
-
-#ifdef _WIN32 /* FatFs development platform */
-
-#include <windows.h>
-#include <tchar.h>
-
-#else /* Embedded platform */
-
-/* These types must be 16-bit, 32-bit or larger integer */
-typedef int INT;
-typedef unsigned int UINT;
-
-/* These types must be 8-bit integer */
-typedef unsigned char UCHAR;
-typedef unsigned char BYTE;
-
-/* These types must be 16-bit integer */
-typedef short SHORT;
-typedef unsigned short USHORT;
-typedef unsigned short WORD;
-typedef unsigned short WCHAR;
-
-/* These types must be 32-bit integer */
-typedef long LONG;
-typedef unsigned long ULONG;
-typedef unsigned long DWORD;
-
-#endif
-
-#endif