minor: macros should not end with underscore(s)

This commit is contained in:
sg
2016-08-08 21:47:20 +02:00
parent 1631307bb3
commit a2fd68098e
13 changed files with 31 additions and 31 deletions

View File

@@ -34,8 +34,8 @@
* Author: Adam Dunkels <adam@sics.se>
*
*/
#ifndef LWIP_HDR_IP_H__
#define LWIP_HDR_IP_H__
#ifndef LWIP_HDR_IP_H
#define LWIP_HDR_IP_H
#include "lwip/opt.h"
@@ -322,6 +322,6 @@ err_t ip_input(struct pbuf *p, struct netif *inp);
}
#endif
#endif /* LWIP_HDR_IP_H__ */
#endif /* LWIP_HDR_IP_H */

View File

@@ -34,8 +34,8 @@
* Author: Adam Dunkels <adam@sics.se>
*
*/
#ifndef LWIP_HDR_IP_ADDR_H__
#define LWIP_HDR_IP_ADDR_H__
#ifndef LWIP_HDR_IP_ADDR_H
#define LWIP_HDR_IP_ADDR_H
#include "lwip/opt.h"
#include "lwip/def.h"
@@ -357,4 +357,4 @@ extern const ip_addr_t ip6_addr_any;
}
#endif
#endif /* LWIP_HDR_IP_ADDR_H__ */
#endif /* LWIP_HDR_IP_ADDR_H */

View File

@@ -34,8 +34,8 @@
#include "netif/ppp/ppp_opts.h"
#if PPP_SUPPORT && PPPOL2TP_SUPPORT /* don't build if not configured for use in lwipopts.h */
#ifndef PPPOL2TP_H_
#define PPPOL2TP_H_
#ifndef PPPOL2TP_H
#define PPPOL2TP_H
#include "ppp.h"
@@ -197,5 +197,5 @@ ppp_pcb *pppol2tp_create(struct netif *pppif,
const u8_t *secret, u8_t secret_len,
ppp_link_status_cb_fn link_status_cb, void *ctx_cb);
#endif /* PPPOL2TP_H_ */
#endif /* PPPOL2TP_H */
#endif /* PPP_SUPPORT && PPPOL2TP_SUPPORT */