summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJohannes Sixt <johannes.sixt@telecom.at>2007-12-03 21:55:57 +0100
committerJohannes Sixt <johannes.sixt@telecom.at>2008-06-22 11:32:45 +0200
commit80ba074f4163dc8ee4232d64e73a8521edcadc1d (patch)
tree64dde5d4ff19b5475b20519ac2ddefd14492581c /git-compat-util.h
parentf4626df51f63d53b89ff01de54cbf7558217ea2b (diff)
downloadgit-80ba074f4163dc8ee4232d64e73a8521edcadc1d.tar.gz
Windows: Use the Windows style PATH separator ';'.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index da7249ac1c..9dc733e56c 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -110,6 +110,10 @@
#define PRIuMAX "llu"
#endif
+#ifndef PATH_SEP
+#define PATH_SEP ':'
+#endif
+
#ifdef __GNUC__
#define NORETURN __attribute__((__noreturn__))
#else