Commit 739040e6 by Vicent Marti

Merge pull request #2315 from jacquesg/qsort-cygwin

cygwin also doesn't have qsort_r
parents 039e354b 90a4340a
...@@ -612,7 +612,7 @@ void git__qsort_r( ...@@ -612,7 +612,7 @@ void git__qsort_r(
#if defined(__MINGW32__) || defined(AMIGA) || \ #if defined(__MINGW32__) || defined(AMIGA) || \
defined(__OpenBSD__) || defined(__NetBSD__) || \ defined(__OpenBSD__) || defined(__NetBSD__) || \
defined(__gnu_hurd__) || defined(__ANDROID_API__) || \ defined(__gnu_hurd__) || defined(__ANDROID_API__) || \
defined(__sun) || \ defined(__sun) || defined(__CYGWIN__) || \
(__GLIBC__ == 2 && __GLIBC_MINOR__ < 8) (__GLIBC__ == 2 && __GLIBC_MINOR__ < 8)
git__insertsort_r(els, nel, elsize, NULL, cmp, payload); git__insertsort_r(els, nel, elsize, NULL, cmp, payload);
#elif defined(GIT_WIN32) #elif defined(GIT_WIN32)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment