aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/string.h
diff options
context:
space:
mode:
authorJohn Kacur <[email protected]>2009-09-24 16:02:18 +0000
committerIngo Molnar <[email protected]>2009-09-24 19:27:51 +0000
commit8b40f521cf1c9750eab0c04da9075e7484675e9c (patch)
treeccf78010cc05ca0e38ebf6f443fd507c287c2fdf /tools/perf/util/string.h
parentperf annotate: Add the cmp_null function and make use of it (diff)
downloadkernel-8b40f521cf1c9750eab0c04da9075e7484675e9c.tar.gz
kernel-8b40f521cf1c9750eab0c04da9075e7484675e9c.zip
perf tools: Protect header files with a consistent style
There was a colorful mix of header guards - standardize them. Signed-off-by: John Kacur <[email protected]> LKML-Reference: <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/util/string.h')
-rw-r--r--tools/perf/util/string.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/string.h b/tools/perf/util/string.h
index bf39dfadfd24..15c827475e7d 100644
--- a/tools/perf/util/string.h
+++ b/tools/perf/util/string.h
@@ -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 */