diff options
Diffstat (limited to 'libc/src/threads/thrd_exit.cpp')
| -rw-r--r-- | libc/src/threads/thrd_exit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/src/threads/thrd_exit.cpp b/libc/src/threads/thrd_exit.cpp index 9935c23bba1e..67a7a419cf99 100644 --- a/libc/src/threads/thrd_exit.cpp +++ b/libc/src/threads/thrd_exit.cpp @@ -12,13 +12,13 @@ #include <threads.h> // For thrd_* type definitions. -namespace __llvm_libc { +namespace LIBC_NAMESPACE { -static_assert(sizeof(thrd_t) == sizeof(__llvm_libc::Thread), +static_assert(sizeof(thrd_t) == sizeof(LIBC_NAMESPACE::Thread), "Mismatch between thrd_t and internal Thread."); LLVM_LIBC_FUNCTION(void, thrd_exit, (int retval)) { thread_exit(ThreadReturnValue(retval), ThreadStyle::STDC); } -} // namespace __llvm_libc +} // namespace LIBC_NAMESPACE |
