1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix for mingw64

* util.c: define MINGW_HAS_SECURE_API for qsort_s on recent
  mingw64.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-03-03 06:18:36 +00:00
parent 85ac60cfd1
commit 83f76f46c7

4
util.c
View file

@ -9,6 +9,10 @@
**********************************************************************/
#if defined __MINGW32__ || defined __MINGW64__
#define MINGW_HAS_SECURE_API 1
#endif
#include "internal.h"
#include <ctype.h>