2
0
Branimir Karadžić 9 жил өмнө
parent
commit
071ac060e6

+ 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
-#include <stdlib.h>
+#	include <stdlib.h>
 #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
-#include <sys/signal.h>
+#	include <sys/signal.h>
 #endif