1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00
esp8266/tests/host/common/MocklwIP.cpp

16 lines
159 B
C++

#include <lwip/netif.h>
extern "C"
{
netif* netif_list = nullptr;
err_t dhcp_renew(struct netif *netif)
{
(void)netif;
return ERR_OK;
}
} // extern "C"