From 4890e2754c238c51497a19b67fb2458ef108f558 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 27 Aug 2024 16:23:47 -0400 Subject: prelude: Rely more on __has_include() Rather than a bunch of manual fallback macros, just provide a fallback definition that returns false. --- src/xspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xspawn.c') diff --git a/src/xspawn.c b/src/xspawn.c index 5e0f989..2385a6e 100644 --- a/src/xspawn.c +++ b/src/xspawn.c @@ -16,7 +16,7 @@ #include #include -#if BFS_USE_PATHS_H +#if __has_include() # include #endif -- cgit v1.2.3