Merge branch 'tb/use-common-win32-pathfuncs-on-cygwin'

Cygwin update.

* tb/use-common-win32-pathfuncs-on-cygwin:
  git clone <url> C:\cygwin\home\USER\repo' is working (again)
This commit is contained in:
Junio C Hamano
2019-01-14 15:29:32 -08:00
9 changed files with 54 additions and 72 deletions

View File

@ -193,10 +193,11 @@
#endif
#if defined(__CYGWIN__)
#include "compat/cygwin.h"
#include "compat/win32/path-utils.h"
#endif
#if defined(__MINGW32__)
/* pull in Windows compatibility stuff */
#include "compat/win32/path-utils.h"
#include "compat/mingw.h"
#elif defined(_MSC_VER)
#include "compat/msvc.h"