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

@ -29,9 +29,9 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __DLLOADER_H__
#define __DLLOADER_H__
#ifndef DLLOADER_H_
#define DLLOADER_H_
int dlloader_load(char *name, char *arg);
#endif /* __SOLOADR_H__ */
#endif /* SOLOADR_H_ */

View file

@ -62,8 +62,8 @@
*
*/
#ifndef __ELFLOADER_ARCH_H__
#define __ELFLOADER_ARCH_H__
#ifndef ELFLOADER_ARCH_H_
#define ELFLOADER_ARCH_H_
#include "loader/elfloader.h"
@ -133,7 +133,7 @@ void elfloader_arch_relocate(int fd, unsigned int sectionoffset,
*/
void elfloader_arch_write_rom(int fd, unsigned short textoff, unsigned int size, char *mem);
#endif /* __ELFLOADER_ARCH_H__ */
#endif /* ELFLOADER_ARCH_H_ */
/** @} */
/** @} */

View file

@ -71,8 +71,8 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __ELFLOADER_H__
#define __ELFLOADER_H__
#ifndef ELFLOADER_H_
#define ELFLOADER_H_
#include "cfs/cfs.h"
@ -187,7 +187,7 @@ struct elf32_rela {
};
#endif /* __ELFLOADER_H__ */
#endif /* ELFLOADER_H_ */
/** @} */
/** @} */

View file

@ -29,8 +29,8 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __ELFLOADER_H__
#define __ELFLOADER_H__
#ifndef ELFLOADER_H_
#define ELFLOADER_H_
#define ELFLOADER_OK 0
#define ELFLOADER_BAD_ELF_HEADER 1
@ -51,4 +51,4 @@ extern struct process *elfloader_loaded_process;
extern void (*elfloader_fini)(void);
extern char elfloader_unknown[30];
#endif /* __ELFLOADER_H__ */
#endif /* ELFLOADER_H_ */

View file

@ -29,8 +29,8 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __SYMBOLS_DEF_H__
#define __SYMBOLS_DEF_H__
#ifndef SYMBOLS_DEF_H_
#define SYMBOLS_DEF_H_
struct symbols {
const char *name;
@ -41,4 +41,4 @@ extern const int symbols_nelts;
extern const struct symbols symbols[/* symbols_nelts */];
#endif /* __SYMBOLS_DEF_H__ */
#endif /* SYMBOLS_DEF_H_ */

View file

@ -29,8 +29,8 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __SYMBOLS_H__
#define __SYMBOLS_H__
#ifndef SYMBOLS_H_
#define SYMBOLS_H_
struct symbols {
const char *name;
@ -41,4 +41,4 @@ extern const int symbols_nelts;
extern const struct symbols symbols[/* symbols_nelts */];
#endif /* __SYMBOLS_H__ */
#endif /* SYMBOLS_H_ */

View file

@ -29,9 +29,9 @@
* This file is part of the Contiki operating system.
*
*/
#ifndef __SYMTAB_H__
#define __SYMTAB_H__
#ifndef SYMTAB_H_
#define SYMTAB_H_
void *symtab_lookup(const char *name);
#endif /* __SYMTAB_H__ */
#endif /* SYMTAB_H_ */