aboutsummaryrefslogtreecommitdiff
path: root/libc/src/ctype/toupper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/ctype/toupper.cpp')
-rw-r--r--libc/src/ctype/toupper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/ctype/toupper.cpp b/libc/src/ctype/toupper.cpp
index b216cc2..7b0db35 100644
--- a/libc/src/ctype/toupper.cpp
+++ b/libc/src/ctype/toupper.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.
@@ -21,4 +21,4 @@ LLVM_LIBC_FUNCTION(int, toupper, (int c)) {
return c;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE