From 071ac060e61b15a65052c08585b8880f70196d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 14 Jul 2016 09:27:38 -0700 Subject: [PATCH] Cleanup. --- include/compat/freebsd/alloca.h | 6 +++--- include/compat/freebsd/signal.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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