diff options
author | Johannes Sixt <johannes.sixt@telecom.at> | 2007-12-03 21:55:57 +0100 |
---|---|---|
committer | Johannes Sixt <johannes.sixt@telecom.at> | 2008-06-22 11:32:45 +0200 |
commit | 80ba074f4163dc8ee4232d64e73a8521edcadc1d (patch) | |
tree | 64dde5d4ff19b5475b20519ac2ddefd14492581c /compat/mingw.h | |
parent | f4626df51f63d53b89ff01de54cbf7558217ea2b (diff) | |
download | git-80ba074f4163dc8ee4232d64e73a8521edcadc1d.tar.gz git-80ba074f4163dc8ee4232d64e73a8521edcadc1d.tar.xz |
Windows: Use the Windows style PATH separator ';'.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'compat/mingw.h')
-rw-r--r-- | compat/mingw.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index e5c0c6ba2..22aae0077 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -132,3 +132,9 @@ int getpagesize(void); /* defined in MinGW's libgcc.a */ struct passwd *getpwuid(int uid); int setitimer(int type, struct itimerval *in, struct itimerval *out); int sigaction(int sig, struct sigaction *in, struct sigaction *out); + +/* + * git specific compatibility + */ + +#define PATH_SEP ';' |