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,9 +32,9 @@
*
*/
#ifndef __CONFIG_H__
#define __CONFIG_H__
#ifndef CONFIG_H_
#define CONFIG_H_
struct ethernet_config * CC_FASTCALL config_read(char *filename);
#endif /* __CONFIG_H__ */
#endif /* CONFIG_H_ */

View file

@ -32,9 +32,9 @@
*
*/
#ifndef __ERROR_H__
#define __ERROR_H__
#ifndef ERROR_H_
#define ERROR_H_
void error_exit(void);
#endif /* __ERROR_H__ */
#endif /* ERROR_H_ */

View file

@ -32,8 +32,8 @@
*
*/
#ifndef __PFS_H__
#define __PFS_H__
#ifndef PFS_H_
#define PFS_H_
int __fastcall__ pfs_open(const char* name, int flags);
void __fastcall__ pfs_close(int fd);
@ -42,4 +42,4 @@ int __fastcall__ pfs_write(int fd, void* buf, unsigned int len);
int __fastcall__ pfs_seek(int fd, int offset, int whence);
int __fastcall__ pfs_remove(const char *name);
#endif /* __PFS_H__ */
#endif /* PFS_H_ */

View file

@ -32,11 +32,11 @@
*
*/
#ifndef __UNLOAD_H__
#define __UNLOAD_H__
#ifndef UNLOAD_H_
#define UNLOAD_H_
#define LOADER_UNLOAD unload
void unload(void);
#endif /* __UNLOAD_H__ */
#endif /* UNLOAD_H_ */