Remove unimplemented "memp_realloc" function from memp.h.

This commit is contained in:
fbernon 2007-03-19 20:23:58 +00:00
parent 3bb13829fe
commit e4cd00b5ea
2 changed files with 5 additions and 3 deletions

View File

@ -67,6 +67,9 @@ HISTORY
++ Bug fixes:
2007-03-19 Frédéric Bernon
* Remove unimplemented "memp_realloc" function from memp.h.
2007-03-11 Simon Goldschmidt
* pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused
memory corruption.

View File

@ -54,11 +54,10 @@ typedef enum {
MEMP_MAX
} memp_t;
void memp_init(void);
void memp_init(void);
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__ */