From b1cd308b37eaacb15fffa584a289a41103018452 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 21 Jun 2024 16:48:50 -0600 Subject: [PATCH] cdefs: Add missing continuation line... TinyC has heart-burn on this construct, but gcc and clang like it just fine. Sponsored by: Netflix --- sys/sys/cdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 8809240ebbf3..6592bd2020ae 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -213,7 +213,7 @@ #endif #if !__has_extension(c_thread_local) -#if (defined(__cplusplus) && __cplusplus >= 201103L) || +#if (defined(__cplusplus) && __cplusplus >= 201103L) || \ __has_extension(cxx_thread_local) #define _Thread_local thread_local #else