Fixed bug #28496: missing include guards in netdb.h

This commit is contained in:
goldsimon 2010-01-06 16:30:23 +00:00
parent 3269da52cc
commit cfe4a12a46
2 changed files with 7 additions and 0 deletions

View File

@ -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)

View File

@ -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__ */