Minor fix on pbuf_init (fix warning) and use same coding style that mem.h, sys.h, tcp.h, etc...

This commit is contained in:
fbernon 2007-07-29 08:23:57 +00:00
parent b8b04271b5
commit 1edd2ed3db

View File

@ -99,7 +99,7 @@ struct pbuf {
};
/* Initializes the pbuf module. This call is empty for now, but may not be in future. */
#define pbuf_init() do { } while (0)
#define pbuf_init()
struct pbuf *pbuf_alloc(pbuf_layer l, u16_t size, pbuf_flag flag);
void pbuf_realloc(struct pbuf *p, u16_t size);