2008-03-04 Kieran Mansley (contributions by others)

* Numerous small compiler error/warning fixes from contributions to
    mailing list after 1.3.0 release candidate made.
This commit is contained in:
kieranm
2008-03-04 13:41:23 +00:00
parent faca23b984
commit 42344ce20c
6 changed files with 17 additions and 4 deletions

View File

@@ -100,7 +100,9 @@ static err_t dhcp_discover(struct netif *netif);
static err_t dhcp_select(struct netif *netif);
static void dhcp_check(struct netif *netif);
static void dhcp_bind(struct netif *netif);
#if DHCP_DOES_ARP_CHECK
static err_t dhcp_decline(struct netif *netif);
#endif
static err_t dhcp_rebind(struct netif *netif);
static void dhcp_set_state(struct dhcp *dhcp, u8_t new_state);

View File

@@ -36,6 +36,8 @@
*
*/
#include <string.h>
#include "lwip/opt.h"
#include "lwip/inet_chksum.h"