Merge pull request #11418 from marcelofg55/fix_ch_compilelinux

Fix crash handler not including stdlib.h

[ci skip]
This commit is contained in:
Rémi Verschelde
2017-09-19 16:57:31 +02:00
committed by GitHub
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -43,6 +43,7 @@
#include <dlfcn.h>
#include <execinfo.h>
#include <signal.h>
#include <stdlib.h>
#include <mach-o/dyld.h>
#include <mach-o/getsect.h>
+1
View File
@@ -39,6 +39,7 @@
#include <dlfcn.h>
#include <execinfo.h>
#include <signal.h>
#include <stdlib.h>
static void handle_crash(int sig) {
if (OS::get_singleton() == NULL)