This commit is contained in:
Branimir Karadžić
2016-07-14 09:27:38 -07:00
parent e446765462
commit 071ac060e6
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
#if BX_CRT_GLIBC
#include_next <alloca.h>
#if defined(__GLIBC__)
# include_next <alloca.h>
#else
#include <stdlib.h>
# include <stdlib.h>
#endif

View File

@@ -1,5 +1,5 @@
#ifdef BX_CRT_GLIBC
#include_next <signal.h>
#if defined(__GLIBC__)
# include_next <signal.h>
#else
#include <sys/signal.h>
# include <sys/signal.h>
#endif