A massive all-tree automated update of all double inclusion guard #defines that changes from using two underscores as a prefix, which are reserved, to not using two underscores as a prefix

This commit is contained in:
Adam Dunkels 2013-11-24 16:57:08 +01:00
parent 42cae1c6c9
commit bb2dcaa057
572 changed files with 1708 additions and 1708 deletions

View file

@ -32,11 +32,11 @@
*
*/
#ifndef __MTARCH_H__
#define __MTARCH_H__
#ifndef MTARCH_H_
#define MTARCH_H_
struct mtarch_thread {
void *mt_thread;
};
#endif /* __MTARCH_H__ */
#endif /* MTARCH_H_ */

View file

@ -30,8 +30,8 @@
*
*/
#ifndef __TAPDEV_DRV_H__
#define __TAPDEV_DRV_H__
#ifndef TAPDEV_DRV_H_
#define TAPDEV_DRV_H_
#include "contiki.h"
@ -40,4 +40,4 @@ PROCESS_NAME(tapdev_process);
uint8_t tapdev_output(void);
int tapdev_fd(void);
#endif /* __TAPDEV_DRV_H__ */
#endif /* TAPDEV_DRV_H_ */

View file

@ -33,12 +33,12 @@
*
*/
#ifndef __TAPDEV_H__
#define __TAPDEV_H__
#ifndef TAPDEV_H_
#define TAPDEV_H_
void tapdev_init(void);
uint16_t tapdev_poll(void);
void tapdev_send(void);
void tapdev_exit(void);
#endif /* __TAPDEV_H__ */
#endif /* TAPDEV_H_ */

View file

@ -33,8 +33,8 @@
*
*
*/
#ifndef __TAPDEV_H__
#define __TAPDEV_H__
#ifndef TAPDEV_H_
#define TAPDEV_H_
#include "contiki-net.h"
@ -43,4 +43,4 @@ uint8_t tapdev_send(const uip_lladdr_t *lladdr);
uint16_t tapdev_poll(void);
void tapdev_do_send(void);
void tapdev_exit(void); //math
#endif /* __TAPDEV_H__ */
#endif /* TAPDEV_H_ */

View file

@ -30,8 +30,8 @@
*
*/
#ifndef __WPCAP_DRV_H__
#define __WPCAP_DRV_H__
#ifndef WPCAP_DRV_H_
#define WPCAP_DRV_H_
#include "contiki.h"
@ -39,4 +39,4 @@ PROCESS_NAME(wpcap_process);
uint8_t wpcap_output(void);
#endif /* __WPCAP_DRV_H__ */
#endif /* WPCAP_DRV_H_ */

View file

@ -32,8 +32,8 @@
*
*/
#ifndef __WPCAP_H__
#define __WPCAP_H__
#ifndef WPCAP_H_
#define WPCAP_H_
void wpcap_init(void);
uint16_t wpcap_poll(void);
@ -46,4 +46,4 @@ void wpcap_send(void);
#endif
void wpcap_exit(void);
#endif /* __WPCAP_H__ */
#endif /* WPCAP_H_ */

View file

@ -37,8 +37,8 @@
* Adam Dunkels <adam@sics.se>
*/
#ifndef __RTIMER_ARCH_H__
#define __RTIMER_ARCH_H__
#ifndef RTIMER_ARCH_H_
#define RTIMER_ARCH_H_
#include "contiki-conf.h"
@ -46,4 +46,4 @@
#define rtimer_arch_now() clock_time()
#endif /* __RTIMER_ARCH_H__ */
#endif /* RTIMER_ARCH_H_ */