On 12/21/2009 10:45 PM, John Kacur wrote: > Clean-up: Protect rt-utils.h with #ifndef RT_UTILS_H > [..] > +#ifndef RT_UTILS.H Macro names should only consist of alphanumeric characters and underscores, i.e. 'a-z', 'A-Z', '0-9', and '_', and the first character should not be a digit. Signed-off-by: Carsten Emde <C.Emde@xxxxxxxxx> diff --git a/src/lib/rt-utils.h b/src/lib/rt-utils.h index fbdcf2b..e7a1908 100644 --- a/src/lib/rt-utils.h +++ b/src/lib/rt-utils.h @@ -1,5 +1,5 @@ -#ifndef RT_UTILS.H -#define RT_UTILS.H +#ifndef RT_UTILS_H +#define RT_UTILS_H #define _STR(x) #x #define STR(x) _STR(x) @@ -8,4 +8,4 @@ int check_privs(void); char *get_debugfileprefix(void); -#endif /* RT_UTILS.H */ +#endif /* RT_UTILS_H */ -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html