1
0

Include execinfo.h only on __GLIBC__

This commit is contained in:
Thomas Boerger 2015-11-19 22:34:32 +01:00
parent a16a9eab4f
commit ffed489156

View File

@ -8,7 +8,9 @@
#ifdef _WIN32 #ifdef _WIN32
#include "../StackWalker.h" #include "../StackWalker.h"
#else #else
#include <execinfo.h> #ifdef __GLIBC__
#include <execinfo.h>
#endif
#include <unistd.h> #include <unistd.h>
#endif #endif