git: b1cd308b37ea - main - cdefs: Add missing continuation line...

From: Warner Losh <imp_at_FreeBSD.org>
Date: Fri, 21 Jun 2024 22:51:58 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=b1cd308b37eaacb15fffa584a289a41103018452

commit b1cd308b37eaacb15fffa584a289a41103018452
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-06-21 22:48:50 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-06-21 22:51:44 +0000

    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