9
0
Fork 0

stringlist: fix cpp macro in header

Both include/string.h and include/stringlist.h define the c preprocessor macro
__STRING_H. This leads to a compile time error, in case both files are
(indirectly) included.

Rename the macro to __STRINGLIST_H in stringlist.h.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Steffen Trumtrar 2013-01-08 16:13:43 +01:00 committed by Sascha Hauer
parent b46b57f35a
commit 2a7b142b76
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#ifndef __STRING_H
#define __STRING_H
#ifndef __STRINGLIST_H
#define __STRINGLIST_H
#include <linux/list.h>
@ -29,4 +29,4 @@ static inline void string_list_free(struct string_list *sl)
}
}
#endif /* __STRING_H */
#endif /* __STRINGLIST_H */