summaryrefslogtreecommitdiff
path: root/compat/win32
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2019-10-04 15:09:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-10-06 00:07:44 (GMT)
commit5b8f9e2417d23a688004eaa402351a8c270845d0 (patch)
treef1e978b2c91bd428a07201edca73ae13dcb1b4ae /compat/win32
parent41616ef6182271178c63e1caf0d21f12bea2d41e (diff)
downloadgit-5b8f9e2417d23a688004eaa402351a8c270845d0.zip
git-5b8f9e2417d23a688004eaa402351a8c270845d0.tar.gz
git-5b8f9e2417d23a688004eaa402351a8c270845d0.tar.bz2
compat/win32/path-utils.h: add #include guards
This adds the common guards that allow headers to be #include'd multiple times. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/win32')
-rw-r--r--compat/win32/path-utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/win32/path-utils.h b/compat/win32/path-utils.h
index 0f70d43..8ed062a 100644
--- a/compat/win32/path-utils.h
+++ b/compat/win32/path-utils.h
@@ -1,3 +1,6 @@
+#ifndef WIN32_PATH_UTILS_H
+#define WIN32_PATH_UTILS_H
+
#define has_dos_drive_prefix(path) \
(isalpha(*(path)) && (path)[1] == ':' ? 2 : 0)
int win32_skip_dos_drive_prefix(char **path);
@@ -18,3 +21,5 @@ static inline char *win32_find_last_dir_sep(const char *path)
#define find_last_dir_sep win32_find_last_dir_sep
int win32_offset_1st_component(const char *path);
#define offset_1st_component win32_offset_1st_component
+
+#endif