diff options
author | Petr Machata <pmachata@redhat.com> | 2014-07-31 11:44:58 +0200 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-08-22 20:38:27 +0900 |
commit | 3ea27fbec92833a25a66f237706ca47a2791db10 (patch) | |
tree | bdf99e5b4cfdd9698e3df15aa6730e1fd4d81817 | |
parent | daac7cac98b5be89209263ba200d7df3c69b70b4 (diff) | |
download | ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.gz ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.bz2 ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.zip |
Normalize some include guards
-rw-r--r-- | bits.h | 6 | ||||
-rw-r--r-- | callback.h | 6 | ||||
-rw-r--r-- | debug.h | 6 | ||||
-rw-r--r-- | dict.h | 6 | ||||
-rw-r--r-- | glob.h | 6 | ||||
-rw-r--r-- | library.h | 6 | ||||
-rw-r--r-- | ltrace.h | 6 | ||||
-rw-r--r-- | memstream.h | 5 | ||||
-rw-r--r-- | options.h | 7 | ||||
-rw-r--r-- | output.h | 7 | ||||
-rw-r--r-- | proc.h | 6 | ||||
-rw-r--r-- | prototype.h | 6 | ||||
-rw-r--r-- | read_config_file.h | 6 | ||||
-rw-r--r-- | summary.h | 6 | ||||
-rw-r--r-- | sysdeps/linux-gnu/trace-defs.h | 6 | ||||
-rw-r--r-- | sysdeps/linux-gnu/trace.h | 6 | ||||
-rw-r--r-- | value_dict.h | 6 |
17 files changed, 55 insertions, 48 deletions
@@ -18,12 +18,12 @@ * 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 */ @@ -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 */ @@ -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 */ @@ -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 */ @@ -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 */ @@ -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 */ @@ -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 */ diff --git a/memstream.h b/memstream.h index eb06541..7360b61 100644 --- a/memstream.h +++ b/memstream.h @@ -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 */ @@ -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 */ @@ -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 */ @@ -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 */ diff --git a/prototype.h b/prototype.h index 824bfd9..cbb6ed2 100644 --- a/prototype.h +++ b/prototype.h @@ -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 */ diff --git a/read_config_file.h b/read_config_file.h index 19351be..5a72a05 100644 --- a/read_config_file.h +++ b/read_config_file.h @@ -18,11 +18,11 @@ * 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 */ @@ -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 */ diff --git a/sysdeps/linux-gnu/trace-defs.h b/sysdeps/linux-gnu/trace-defs.h index aa69b83..f2e0855 100644 --- a/sysdeps/linux-gnu/trace-defs.h +++ b/sysdeps/linux-gnu/trace-defs.h @@ -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 */ diff --git a/sysdeps/linux-gnu/trace.h b/sysdeps/linux-gnu/trace.h index 94844dd..1599738 100644 --- a/sysdeps/linux-gnu/trace.h +++ b/sysdeps/linux-gnu/trace.h @@ -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 */ diff --git a/value_dict.h b/value_dict.h index f75ee37..4991dd3 100644 --- a/value_dict.h +++ b/value_dict.h @@ -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 */ |