aboutsummaryrefslogtreecommitdiff
path: root/libc/src/ctype/isalnum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/ctype/isalnum.cpp')
-rw-r--r--libc/src/ctype/isalnum.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/ctype/isalnum.cpp b/libc/src/ctype/isalnum.cpp
index ce3608f..42ed8ea 100644
--- a/libc/src/ctype/isalnum.cpp
+++ b/libc/src/ctype/isalnum.cpp
@@ -11,7 +11,7 @@
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
// TODO: Currently restricted to default locale.
// These should be extended using locale information.
@@ -19,4 +19,4 @@ LLVM_LIBC_FUNCTION(int, isalnum, (int c)) {
return static_cast<int>(internal::isalnum(static_cast<unsigned>(c)));
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE