diff --git a/include/compat/freebsd/alloca.h b/include/compat/freebsd/alloca.h index c1acc38..8373133 100644 --- a/include/compat/freebsd/alloca.h +++ b/include/compat/freebsd/alloca.h @@ -1,5 +1,5 @@ -#if BX_CRT_GLIBC -#include_next +#if defined(__GLIBC__) +# include_next #else -#include +# include #endif diff --git a/include/compat/freebsd/signal.h b/include/compat/freebsd/signal.h index deb07d2..64f02c7 100644 --- a/include/compat/freebsd/signal.h +++ b/include/compat/freebsd/signal.h @@ -1,5 +1,5 @@ -#ifdef BX_CRT_GLIBC -#include_next +#if defined(__GLIBC__) +# include_next #else -#include +# include #endif