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 authored and bsdjhb committed Oct 24, 2024
2 parents 7de5544 + b1cd308 commit c302fa2
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 @@ -331,7 +331,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 c302fa2

Please sign in to comment.