Commit 7fa6c8ce by Patrick Steinhardt

util: fix missing headers for MinGW environments

There are multiple references to undefined functions in the Microsoft
builds. Add headers to make them known.
parent 0f09d9f5
...@@ -10,7 +10,12 @@ ...@@ -10,7 +10,12 @@
#include "common.h" #include "common.h"
#ifdef GIT_WIN32 #ifdef GIT_WIN32
# include "win32/utf-conv.h"
# include "win32/w32_buffer.h" # include "win32/w32_buffer.h"
# ifdef HAVE_QSORT_S
# include <search.h>
# endif
#endif #endif
#ifdef _MSC_VER #ifdef _MSC_VER
......
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