summaryrefslogtreecommitdiff
path: root/lib/FreeRTOS/Source/include/stdint.readme
diff options
context:
space:
mode:
authorPeter Lawrence <[email protected]>2020-03-15 18:28:13 -0500
committerPeter Lawrence <[email protected]>2020-03-15 18:28:13 -0500
commite7efcb6fd57b689d25a3b42d01c14ffe39e76500 (patch)
tree20e9d5b48207299aadeaf8d37bcfe826608997c9 /lib/FreeRTOS/Source/include/stdint.readme
parent53732805b76882b3e0eba561ce854e0a95dd6dfe (diff)
parenta0eb8a26517040850a0e4185aef398183b04ddc7 (diff)
merge with current master
Diffstat (limited to 'lib/FreeRTOS/Source/include/stdint.readme')
-rw-r--r--lib/FreeRTOS/Source/include/stdint.readme27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/FreeRTOS/Source/include/stdint.readme b/lib/FreeRTOS/Source/include/stdint.readme
deleted file mode 100644
index 4414c29ed..000000000
--- a/lib/FreeRTOS/Source/include/stdint.readme
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#ifndef FREERTOS_STDINT
-#define FREERTOS_STDINT
-
-/*******************************************************************************
- * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions
- * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be
- * built using compilers that do not provide their own stdint.h definition.
- *
- * To use this file:
- *
- * 1) Copy this file into the directory that contains your FreeRTOSConfig.h
- * header file, as that directory will already be in the compilers include
- * path.
- *
- * 2) Rename the copied file stdint.h.
- *
- */
-
-typedef signed char int8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t;
-typedef unsigned short uint16_t;
-typedef long int32_t;
-typedef unsigned long uint32_t;
-
-#endif /* FREERTOS_STDINT */