mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-29 00:32:51 +00:00
Remove unimplemented "memp_realloc" function from memp.h.
This commit is contained in:
parent
3bb13829fe
commit
e4cd00b5ea
@ -67,6 +67,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bug fixes:
|
++ Bug fixes:
|
||||||
|
|
||||||
|
2007-03-19 Frédéric Bernon
|
||||||
|
* Remove unimplemented "memp_realloc" function from memp.h.
|
||||||
|
|
||||||
2007-03-11 Simon Goldschmidt
|
2007-03-11 Simon Goldschmidt
|
||||||
* pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused
|
* pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused
|
||||||
memory corruption.
|
memory corruption.
|
||||||
|
@ -54,11 +54,10 @@ typedef enum {
|
|||||||
MEMP_MAX
|
MEMP_MAX
|
||||||
} memp_t;
|
} memp_t;
|
||||||
|
|
||||||
void memp_init(void);
|
void memp_init(void);
|
||||||
|
|
||||||
void *memp_malloc(memp_t type);
|
void *memp_malloc(memp_t type);
|
||||||
void *memp_realloc(memp_t fromtype, memp_t totype, void *mem);
|
void memp_free(memp_t type, void *mem);
|
||||||
void memp_free(memp_t type, void *mem);
|
|
||||||
|
|
||||||
#endif /* __LWIP_MEMP_H__ */
|
#endif /* __LWIP_MEMP_H__ */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user