diff options
author | Thiago Farina <tfransosi@gmail.com> | 2010-01-08 17:45:08 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-09 23:39:11 -0800 |
commit | 0afcb5f7915337c76c6743dab70c49facdeddd7e (patch) | |
tree | a45ba63efda7cb5f1ea6464337736874df0529e9 /string-list.h | |
parent | d6f8fd0b3eeb4349493209740742d67616e0263c (diff) | |
download | git-0afcb5f7915337c76c6743dab70c49facdeddd7e.tar.gz |
string-list: rename the include guard to STRING_LIST_H
Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'string-list.h')
-rw-r--r-- | string-list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string-list.h b/string-list.h index 14bbc477de..6569cf607b 100644 --- a/string-list.h +++ b/string-list.h @@ -1,5 +1,5 @@ -#ifndef PATH_LIST_H -#define PATH_LIST_H +#ifndef STRING_LIST_H +#define STRING_LIST_H struct string_list_item { char *string; @@ -39,4 +39,4 @@ struct string_list_item *string_list_append(const char *string, struct string_li void sort_string_list(struct string_list *list); int unsorted_string_list_has_string(struct string_list *list, const char *string); -#endif /* PATH_LIST_H */ +#endif /* STRING_LIST_H */ |