aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdlib/atoll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdlib/atoll.cpp')
-rw-r--r--libc/src/stdlib/atoll.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/stdlib/atoll.cpp b/libc/src/stdlib/atoll.cpp
index 5047226..921459d 100644
--- a/libc/src/stdlib/atoll.cpp
+++ b/libc/src/stdlib/atoll.cpp
@@ -11,7 +11,7 @@
#include "src/__support/str_to_integer.h"
#include "src/errno/libc_errno.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(long long, atoll, (const char *str)) {
auto result = internal::strtointeger<long long>(str, 10);
@@ -21,4 +21,4 @@ LLVM_LIBC_FUNCTION(long long, atoll, (const char *str)) {
return result;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE