From 18f74c6e152e4602adc3a7e88ec34f3469b35e70 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 15 Feb 2016 03:21:26 -0500 Subject: [PATCH] Patched to compile on Visual Studio. --- src/stdlib/SDL_qsort.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stdlib/SDL_qsort.c b/src/stdlib/SDL_qsort.c index b0a662f7e..8aa403fae 100644 --- a/src/stdlib/SDL_qsort.c +++ b/src/stdlib/SDL_qsort.c @@ -27,6 +27,9 @@ SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, c #define _PDCLIB_size_t size_t #endif +#ifdef qsort +#undef qsort +#endif #define qsort SDL_qsort #define inline SDL_INLINE