mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-19 12:14:30 +08:00
[rtdef][libc] solve the conflicts between libc data types and rtdef data types (#5961)
This commit is contained in:

committed by
GitHub

parent
50a42331e6
commit
c147ff417c
@@ -71,6 +71,20 @@ extern "C" {
|
||||
|
||||
/* RT-Thread basic data type definitions */
|
||||
#ifndef RT_USING_ARCH_DATA_TYPE
|
||||
#ifdef RT_USING_LIBC
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
typedef int8_t rt_int8_t; /**< 8bit integer type */
|
||||
typedef int16_t rt_int16_t; /**< 16bit integer type */
|
||||
typedef int32_t rt_int32_t; /**< 32bit integer type */
|
||||
typedef uint8_t rt_uint8_t; /**< 8bit unsigned integer type */
|
||||
typedef uint16_t rt_uint16_t; /**< 16bit unsigned integer type */
|
||||
typedef uint32_t rt_uint32_t; /**< 32bit unsigned integer type */
|
||||
typedef int64_t rt_int64_t; /**< 64bit integer type */
|
||||
typedef uint64_t rt_uint64_t; /**< 64bit unsigned integer type */
|
||||
typedef size_t rt_size_t; /**< Type for size number */
|
||||
|
||||
#else
|
||||
typedef signed char rt_int8_t; /**< 8bit integer type */
|
||||
typedef signed short rt_int16_t; /**< 16bit integer type */
|
||||
typedef signed int rt_int32_t; /**< 32bit integer type */
|
||||
@@ -87,6 +101,7 @@ typedef signed long long rt_int64_t; /**< 64bit integer type
|
||||
typedef unsigned long long rt_uint64_t; /**< 64bit unsigned integer type */
|
||||
typedef unsigned int rt_size_t; /**< Type for size number */
|
||||
#endif /* ARCH_CPU_64BIT */
|
||||
#endif /* RT_USING_LIBC */
|
||||
#endif /* RT_USING_ARCH_DATA_TYPE */
|
||||
|
||||
typedef int rt_bool_t; /**< boolean type */
|
||||
|
Reference in New Issue
Block a user