aboutsummaryrefslogtreecommitdiff
path: root/libc/src/wchar/btowc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/wchar/btowc.cpp')
-rw-r--r--libc/src/wchar/btowc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/wchar/btowc.cpp b/libc/src/wchar/btowc.cpp
index 6db888c..040c60e 100644
--- a/libc/src/wchar/btowc.cpp
+++ b/libc/src/wchar/btowc.cpp
@@ -12,7 +12,7 @@
#include <stdio.h> // for EOF.
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(int, btowc, (wint_t c)) {
auto result = internal::btowc(c);
@@ -23,4 +23,4 @@ LLVM_LIBC_FUNCTION(int, btowc, (wint_t c)) {
}
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE