Branimir Karadžić 9 years ago
parent
commit
071ac060e6
2 changed files with 6 additions and 6 deletions
  1. 3 3
      include/compat/freebsd/alloca.h
  2. 3 3
      include/compat/freebsd/signal.h

+ 3 - 3
include/compat/freebsd/alloca.h

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

+ 3 - 3
include/compat/freebsd/signal.h

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