perf tools: Protect header files with a consistent style
There was a colorful mix of header guards - standardize them. Signed-off-by: John Kacur <jkacur@redhat.com> LKML-Reference: <alpine.LFD.2.00.0909241756530.11383@localhost.localdomain> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef _PERF_STRING_H_
|
||||
#define _PERF_STRING_H_
|
||||
#ifndef __PERF_STRING_H_
|
||||
#define __PERF_STRING_H_
|
||||
|
||||
#include "types.h"
|
||||
|
||||
@@ -8,4 +8,4 @@ int hex2u64(const char *ptr, u64 *val);
|
||||
#define _STR(x) #x
|
||||
#define STR(x) _STR(x)
|
||||
|
||||
#endif
|
||||
#endif /* __PERF_STRING_H */
|
||||
|
Reference in New Issue
Block a user