diff options
author | Junio C Hamano <junkio@cox.net> | 2007-04-28 23:38:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-29 02:05:11 -0700 |
commit | e0173ad9fcabfcabe54d65be2c8b6602f61079e6 (patch) | |
tree | 168044577fed17a8dc4e365605360ee88668cec7 /path-list.h | |
parent | Apply mailmap in git-blame output. (diff) | |
download | tgif-e0173ad9fcabfcabe54d65be2c8b6602f61079e6.tar.xz |
Make macros to prevent double-inclusion in headers consistent.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'path-list.h')
-rw-r--r-- | path-list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/path-list.h b/path-list.h index d6401eaa35..ce5ffabcce 100644 --- a/path-list.h +++ b/path-list.h @@ -1,5 +1,5 @@ -#ifndef _PATH_LIST_H_ -#define _PATH_LIST_H_ +#ifndef PATH_LIST_H +#define PATH_LIST_H struct path_list_item { char *path; @@ -19,4 +19,4 @@ void path_list_clear(struct path_list *list, int free_items); struct path_list_item *path_list_insert(const char *path, struct path_list *list); struct path_list_item *path_list_lookup(const char *path, struct path_list *list); -#endif /* _PATH_LIST_H_ */ +#endif /* PATH_LIST_H */ |