Skip to content

Commit

Permalink
cdefs: Add missing continuation line...
Browse files Browse the repository at this point in the history
TinyC has heart-burn on this construct, but gcc and clang like it just
fine.

Sponsored by:		Netflix
  • Loading branch information
bsdimp committed Jun 21, 2024
1 parent a7de510 commit b1cd308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/sys/cdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b1cd308

Please sign in to comment.