mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +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:
|
||||
|
||||
2010-01-06: Simon Goldschmidt
|
||||
* netdb.h: Fixed bug #28496: missing include guards in netdb.h
|
||||
|
||||
2009-12-31: Simon Goldschmidt
|
||||
* 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)
|
||||
|
@ -26,6 +26,8 @@
|
||||
* Author: Simon Goldschmidt
|
||||
*
|
||||
*/
|
||||
#ifndef __LWIP_NETDB_H__
|
||||
#define __LWIP_NETDB_H__
|
||||
|
||||
#include "lwip/opt.h"
|
||||
|
||||
@ -109,3 +111,5 @@ int lwip_getaddrinfo(const char *nodename,
|
||||
#endif /* LWIP_COMPAT_SOCKETS */
|
||||
|
||||
#endif /* LWIP_DNS && LWIP_SOCKET */
|
||||
|
||||
#endif /* __LWIP_NETDB_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user