From 4d6a2499f6be9fe02b55fac64201f97e20318748 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Tue, 16 Dec 2008 09:35:40 -0800 Subject: [PATCH] Minor update to assert, pull include_next out of ifdef --- lib/libspl/include/assert.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libspl/include/assert.h b/lib/libspl/include/assert.h index 9368bba810..b9c7a95583 100644 --- a/lib/libspl/include/assert.h +++ b/lib/libspl/include/assert.h @@ -24,10 +24,11 @@ * Use is subject to license terms. */ +#include_next + #ifndef _SOL_ASSERT_H #define _SOL_ASSERT_H -#include_next #include #include @@ -39,6 +40,6 @@ __assert_c99(const char *expr, const char *file, int line, const char *func) file, line, func, expr); abort(); } -#endif +#endif /* __assert_c99 */ #endif