From 9afc7100a1078e177ff68349446526efe6872618 Mon Sep 17 00:00:00 2001 From: Adam Lackorzynski Date: Sun, 3 Dec 2017 16:46:19 +0100 Subject: [PATCH] Fix for gcc with no __has_include or __has_include_next support Fixes: https://bugs.freedesktop.org/103396 Signed-off-by: Guillem Jover --- include/bsd/sys/cdefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bsd/sys/cdefs.h b/include/bsd/sys/cdefs.h index 044f221..b4c8f30 100644 --- a/include/bsd/sys/cdefs.h +++ b/include/bsd/sys/cdefs.h @@ -25,10 +25,10 @@ */ #ifndef __has_include -#define __has_include 1 +#define __has_include(x) 1 #endif #ifndef __has_include_next -#define __has_include_next 1 +#define __has_include_next(x) 1 #endif #ifdef LIBBSD_OVERLAY