summaryrefslogtreecommitdiff
path: root/libc/src/threads/thrd_exit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/threads/thrd_exit.cpp')
-rw-r--r--libc/src/threads/thrd_exit.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/threads/thrd_exit.cpp b/libc/src/threads/thrd_exit.cpp
index 67a7a419cf99..72fd95034d0a 100644
--- a/libc/src/threads/thrd_exit.cpp
+++ b/libc/src/threads/thrd_exit.cpp
@@ -8,11 +8,12 @@
#include "src/threads/thrd_exit.h"
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
#include "src/__support/threads/thread.h"
#include <threads.h> // For thrd_* type definitions.
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
static_assert(sizeof(thrd_t) == sizeof(LIBC_NAMESPACE::Thread),
"Mismatch between thrd_t and internal Thread.");
@@ -21,4 +22,4 @@ LLVM_LIBC_FUNCTION(void, thrd_exit, (int retval)) {
thread_exit(ThreadReturnValue(retval), ThreadStyle::STDC);
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL