aboutsummaryrefslogtreecommitdiff
path: root/libc/src/ctype/iscntrl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/ctype/iscntrl.cpp')
-rw-r--r--libc/src/ctype/iscntrl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/ctype/iscntrl.cpp b/libc/src/ctype/iscntrl.cpp
index b203e4e..b52b86f 100644
--- a/libc/src/ctype/iscntrl.cpp
+++ b/libc/src/ctype/iscntrl.cpp
@@ -10,7 +10,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, iscntrl, (int c)) {
return static_cast<int>(ch < 0x20 || ch == 0x7f);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE