cdefs: Add missing continuation line...

TinyC has heart-burn on this construct, but gcc and clang like it just
fine.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-06-21 16:48:50 -06:00
parent a7de510685
commit b1cd308b37

View file

@ -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