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

@ -65,8 +65,8 @@
* Author: Adam Dunkels <adam@sics.se>
*
*/
#ifndef __LIST_H__
#define __LIST_H__
#ifndef LIST_H_
#define LIST_H_
#define LIST_CONCAT2(s1, s2) s1##s2
#define LIST_CONCAT(s1, s2) LIST_CONCAT2(s1, s2)
@ -153,7 +153,7 @@ void list_insert(list_t list, void *previtem, void *newitem);
void * list_item_next(void *item);
#endif /* __LIST_H__ */
#endif /* LIST_H_ */
/** @} */
/** @} */