Normalize some include guards
authorPetr Machata <pmachata@redhat.com>
Thu, 31 Jul 2014 09:44:58 +0000 (11:44 +0200)
committerChanho Park <chanho61.park@samsung.com>
Fri, 22 Aug 2014 11:38:27 +0000 (20:38 +0900)
17 files changed:
bits.h
callback.h
debug.h
dict.h
glob.h
library.h
ltrace.h
memstream.h
options.h
output.h
proc.h
prototype.h
read_config_file.h
summary.h
sysdeps/linux-gnu/trace-defs.h
sysdeps/linux-gnu/trace.h
value_dict.h

diff --git a/bits.h b/bits.h
index 7dbe478..d4e25bf 100644 (file)
--- a/bits.h
+++ b/bits.h
  * 02110-1301 USA
  */
 
-#ifndef _BITS_H_
-#define _BITS_H_
+#ifndef BITS_H
+#define BITS_H
 
 #include <stdint.h>
 
 /* Count bits in U that are 1.  */
 unsigned bitcount(uint64_t u);
 
-#endif /* _BITS_H_ */
+#endif /* BITS_H */
index 3db579c..62a63c4 100644 (file)
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _CALLBACK_H_
-#define _CALLBACK_H_
+#ifndef CALLBACK_H
+#define CALLBACK_H
 
 /* Notes on the iteration interface used across ltrace.  Typically the
  * iteration function looks something like this:
@@ -65,4 +65,4 @@ enum callback_status {
 #define CBS_STOP_IF(X) ((X) ? CBS_STOP : CBS_CONT)
 #define CBS_CONT_IF(X) ((X) ? CBS_CONT : CBS_STOP)
 
-#endif /* _CALLBACK_H_ */
+#endif /* CALLBACK_H */
diff --git a/debug.h b/debug.h
index 542dda5..ea6abbc 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -19,8 +19,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _DEBUG_H
-#define _DEBUG_H
+#ifndef DEBUG_H
+#define DEBUG_H
 
 #include "backend.h"
 #include "forward.h"
@@ -42,4 +42,4 @@ int xinfdump(struct process *proc, arch_addr_t addr, size_t length);
 
 #define debug(level, expr...) debug_(level, __FILE__, __LINE__, expr)
 
-#endif
+#endif /* DEBUG_H */
diff --git a/dict.h b/dict.h
index a17e1da..4379e7c 100644 (file)
--- a/dict.h
+++ b/dict.h
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _DICT_H_
-#define _DICT_H_
+#ifndef DICT_H
+#define DICT_H
 
 #include <stddef.h>
 #include <stdint.h>
@@ -250,4 +250,4 @@ void dict_dtor_string(const char **key, void *data);
 /* A cloner that calls 'strdup' on keys in a table.  */
 int dict_clone_string(const char **tgt, const char **src, void *data);
 
-#endif /* _DICT_H_ */
+#endif /* DICT_H */
diff --git a/glob.h b/glob.h
index d60c0a2..c732373 100644 (file)
--- a/glob.h
+++ b/glob.h
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _GLOB_H_
-#define _GLOB_H_
+#ifndef GLOB_H
+#define GLOB_H
 
 #include <sys/types.h>
 #include <regex.h>
@@ -29,4 +29,4 @@
  * supported by globcomp.  */
 int globcomp(regex_t *preg, const char *glob, int cflags);
 
-#endif /* _GLOB_H_ */
+#endif /* GLOB_H */
index 6f1dc0f..4506621 100644 (file)
--- a/library.h
+++ b/library.h
@@ -19,8 +19,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _LIBRARY_H_
-#define _LIBRARY_H_
+#ifndef LIBRARY_H
+#define LIBRARY_H
 
 #include <stdint.h>
 #include <stdbool.h>
@@ -291,4 +291,4 @@ const char** library_exported_names_each_alias(
 int library_exported_names_contains(struct library_exported_names* names,
                                    const char* queryname);
 
-#endif /* _LIBRARY_H_ */
+#endif /* LIBRARY_H */
index 3e714a8..a92d391 100644 (file)
--- a/ltrace.h
+++ b/ltrace.h
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _LTRACE_H_
-#define _LTRACE_H_
+#ifndef LTRACE_H
+#define LTRACE_H
 
 typedef enum Event_type Event_type;
 enum Event_type {
@@ -61,4 +61,4 @@ extern void ltrace_init(int argc, char **argv);
 extern void ltrace_add_callback(callback_func f, Event_type type);
 extern void ltrace_main(void);
 
-#endif /* _LTRACE_H_ */
+#endif /* LTRACE_H */
index eb06541..7360b61 100644 (file)
@@ -18,6 +18,9 @@
  * 02110-1301 USA
  */
 
+#ifndef MEMSTREAM_H
+#define MEMSTREAM_H
+
 #include <stdio.h>
 
 /* Portability wrapper for platforms that don't have
@@ -33,3 +36,5 @@ struct memstream
 int memstream_init(struct memstream *memstream);
 int memstream_close(struct memstream *memstream);
 void memstream_destroy(struct memstream *memstream);
+
+#endif /* MEMSTREAM_H */
index 35c3d89..38f4ecd 100644 (file)
--- a/options.h
+++ b/options.h
@@ -21,8 +21,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA
  */
-#ifndef _OPTIONS_H_
-#define _OPTIONS_H_
+
+#ifndef OPTIONS_H
+#define OPTIONS_H
 
 #include <stdio.h>
 #include <sys/types.h>
@@ -105,4 +106,4 @@ extern struct vect opt_F;
 
 extern char **process_options(int argc, char **argv);
 
-#endif /* _OPTIONS_H_ */
+#endif /* OPTIONS_H */
index 2e74d61..3f403c8 100644 (file)
--- a/output.h
+++ b/output.h
@@ -18,8 +18,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA
  */
-#ifndef _OUTPUT_H_
-#define _OUTPUT_H_
+
+#ifndef OUTPUT_H
+#define OUTPUT_H
 
 #include "fetch.h"
 #include "forward.h"
@@ -56,4 +57,4 @@ void report_error(char const *file, unsigned line_no, const char *fmt, ...);
 void report_warning(char const *file, unsigned line_no, const char *fmt, ...);
 void report_global_error(const char *fmt, ...);
 
-#endif /* _OUTPUT_H_ */
+#endif /* OUTPUT_H */
diff --git a/proc.h b/proc.h
index c1408be..a611456 100644 (file)
--- a/proc.h
+++ b/proc.h
@@ -20,8 +20,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _PROC_H_
-#define _PROC_H_
+#ifndef PROC_H
+#define PROC_H
 
 #include "config.h"
 
@@ -277,4 +277,4 @@ int proc_read_16(struct process *proc, arch_addr_t addr, uint16_t *lp);
 int proc_read_32(struct process *proc, arch_addr_t addr, uint32_t *lp);
 int proc_read_64(struct process *proc, arch_addr_t addr, uint64_t *lp);
 
-#endif /* _PROC_H_ */
+#endif /* PROC_H */
index 824bfd9..cbb6ed2 100644 (file)
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _PROTOTYPE_H_
-#define _PROTOTYPE_H_
+#ifndef PROTOTYPE_H
+#define PROTOTYPE_H
 
 #include <stdbool.h>
 
@@ -240,4 +240,4 @@ extern struct protolib_cache g_protocache;
 
 void init_global_config(void);
 
-#endif /* _PROTOTYPE_H_ */
+#endif /* PROTOTYPE_H */
index 19351be..5a72a05 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA
  */
-#ifndef _READ_CONFIG_FILE_H_
-#define _READ_CONFIG_FILE_H_
+#ifndef READ_CONFIG_FILE_H
+#define READ_CONFIG_FILE_H
 
 #include "forward.h"
 
 int read_config_file(FILE *stream, const char *name, struct protolib *plib);
 
-#endif /* _READ_CONFIG_FILE_H_ */
+#endif /* READ_CONFIG_FILE_H */
index f680ef9..ea9747a 100644 (file)
--- a/summary.h
+++ b/summary.h
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _SUMMARY_H_
-#define _SUMMARY_H_
+#ifndef SUMMARY_H
+#define SUMMARY_H
 
 #include "forward.h"
 
@@ -32,4 +32,4 @@ void summary_account_call(struct library_symbol *libsym,
                          struct timedelta spent);
 void show_summary(void);
 
-#endif /* _SUMMARY_H_ */
+#endif /* SUMMARY_H */
index aa69b83..f2e0855 100644 (file)
@@ -17,8 +17,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA
  */
-#ifndef _TRACE_DEFS_H_
-#define _TRACE_DEFS_H_
+#ifndef TRACE_DEFS_H
+#define TRACE_DEFS_H
 #include <sys/ptrace.h>
 
 /* If the system headers did not provide the constants, hard-code the
@@ -89,4 +89,4 @@
 # define PTRACE_EVENT_EXIT       6
 #endif
 
-#endif /* _TRACE_DEFS_H_ */
+#endif /* TRACE_DEFS_H */
index 94844dd..1599738 100644 (file)
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef _LTRACE_LINUX_TRACE_H_
-#define _LTRACE_LINUX_TRACE_H_
+#ifndef LTRACE_LINUX_TRACE_H
+#define LTRACE_LINUX_TRACE_H
 
 #include "proc.h"
 
@@ -151,4 +151,4 @@ char *linux_append_IFUNC_to_name(const char *name);
 struct prototype *linux_IFUNC_prototype(void);
 
 
-#endif /* _LTRACE_LINUX_TRACE_H_ */
+#endif /* LTRACE_LINUX_TRACE_H */
index f75ee37..4991dd3 100644 (file)
@@ -18,8 +18,8 @@
  * 02110-1301 USA
  */
 
-#ifndef ARGS_H
-#define ARGS_H
+#ifndef VALUE_DICT_H
+#define VALUE_DICT_H
 
 #include "forward.h"
 #include "vect.h"
@@ -64,4 +64,4 @@ struct value *val_dict_get_name(struct value_dict *dict, const char *name);
  * itself (the pointer) is not freed.  */
 void val_dict_destroy(struct value_dict *dict);
 
-#endif /* ARGS_H */
+#endif /* VALUE_DICT_H */