mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 21:14:09 +00:00
Added #include <string.h> for memset()/memcpy().
This commit is contained in:
parent
8d7f09fa92
commit
ea0dc429a7
@ -1,6 +1,9 @@
|
|||||||
#ifndef __CC_H__
|
#ifndef __CC_H__
|
||||||
#define __CC_H__
|
#define __CC_H__
|
||||||
|
|
||||||
|
/* memset(), memcpy() */
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
typedef unsigned char u8_t;
|
typedef unsigned char u8_t;
|
||||||
typedef signed char s8_t;
|
typedef signed char s8_t;
|
||||||
typedef unsigned short u16_t;
|
typedef unsigned short u16_t;
|
||||||
@ -16,5 +19,4 @@ typedef u32_t mem_ptr_t;
|
|||||||
#define PACK_STRUCT_END
|
#define PACK_STRUCT_END
|
||||||
#define PACK_STRUCT_FIELD(x) x
|
#define PACK_STRUCT_FIELD(x) x
|
||||||
|
|
||||||
|
|
||||||
#endif /* __CC_H__ */
|
#endif /* __CC_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user