File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed
components/net/lwip-1.4.1/src/arch/include/arch Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ CONFIG_RT_USING_SERIAL=y
9898#
9999# POSIX layer and C standard library
100100#
101- # CONFIG_RT_USING_LIBC is not set
101+ CONFIG_RT_USING_LIBC=y
102102# CONFIG_RT_USING_PTHREADS is not set
103103
104104#
Original file line number Diff line number Diff line change 8989
9090/* POSIX layer and C standard library */
9191
92- /* RT_USING_LIBC is not set */
92+ #define RT_USING_LIBC
9393/* RT_USING_PTHREADS is not set */
9494
9595/* Network stack */
Original file line number Diff line number Diff line change 3838#include <rthw.h>
3939#include <rtthread.h>
4040
41- typedef rt_uint8_t u8_t ;
42- typedef rt_int8_t s8_t ;
43- typedef rt_uint16_t u16_t ;
44- typedef rt_int16_t s16_t ;
45- typedef rt_uint32_t u32_t ;
46- typedef rt_int32_t s32_t ;
47- typedef rt_uint32_t mem_ptr_t ;
41+ #include <stdint.h>
42+ typedef uint8_t u8_t ;
43+ typedef int8_t s8_t ;
44+ typedef uint16_t u16_t ;
45+ typedef int16_t s16_t ;
46+ typedef uint32_t u32_t ;
47+ typedef int32_t s32_t ;
48+ typedef uintptr_t mem_ptr_t ;
4849
4950#define U16_F "hu"
5051#define S16_F "hd"
Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ struct rt_timer
441441};
442442typedef struct rt_timer *rt_timer_t ;
443443
444- /* @}*/
444+ /* * @}*/
445445
446446/* *
447447 * @addtogroup Signal
You can’t perform that action at this time.
0 commit comments