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 /value_dict.h | |
parent | daac7cac98b5be89209263ba200d7df3c69b70b4 (diff) | |
download | ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.gz ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.bz2 ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.zip |
Normalize some include guards
Diffstat (limited to 'value_dict.h')
-rw-r--r-- | value_dict.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |