mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-01 12:00:53 +00:00
Fixed bug #28496: missing include guards in netdb.h
This commit is contained in:
parent
3269da52cc
commit
cfe4a12a46
@ -33,6 +33,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2010-01-06: Simon Goldschmidt
|
||||||
|
* netdb.h: Fixed bug #28496: missing include guards in netdb.h
|
||||||
|
|
||||||
2009-12-31: Simon Goldschmidt
|
2009-12-31: Simon Goldschmidt
|
||||||
* many ppp files: Reorganised PPP source code from ucip structure to pppd
|
* many ppp files: Reorganised PPP source code from ucip structure to pppd
|
||||||
structure to easily compare our code against the pppd code (around v2.3.1)
|
structure to easily compare our code against the pppd code (around v2.3.1)
|
||||||
|
@ -26,6 +26,8 @@
|
|||||||
* Author: Simon Goldschmidt
|
* Author: Simon Goldschmidt
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#ifndef __LWIP_NETDB_H__
|
||||||
|
#define __LWIP_NETDB_H__
|
||||||
|
|
||||||
#include "lwip/opt.h"
|
#include "lwip/opt.h"
|
||||||
|
|
||||||
@ -109,3 +111,5 @@ int lwip_getaddrinfo(const char *nodename,
|
|||||||
#endif /* LWIP_COMPAT_SOCKETS */
|
#endif /* LWIP_COMPAT_SOCKETS */
|
||||||
|
|
||||||
#endif /* LWIP_DNS && LWIP_SOCKET */
|
#endif /* LWIP_DNS && LWIP_SOCKET */
|
||||||
|
|
||||||
|
#endif /* __LWIP_NETDB_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user