aboutsummaryrefslogtreecommitdiff
path: root/path-list.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-04-28 23:38:52 -0700
committerJunio C Hamano <junkio@cox.net>2007-04-29 02:05:11 -0700
commite0173ad9fcabfcabe54d65be2c8b6602f61079e6 (patch)
tree168044577fed17a8dc4e365605360ee88668cec7 /path-list.h
parentf95673849c99baf3b10756e944d6ebe22394a2c0 (diff)
downloadgit-e0173ad9fcabfcabe54d65be2c8b6602f61079e6.tar.gz
git-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/path-list.h b/path-list.h
index d6401eaa3..ce5ffabcc 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 */