aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdlib/strtoul.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdlib/strtoul.cpp')
-rw-r--r--libc/src/stdlib/strtoul.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/stdlib/strtoul.cpp b/libc/src/stdlib/strtoul.cpp
index c3b1b93..f50ed7e 100644
--- a/libc/src/stdlib/strtoul.cpp
+++ b/libc/src/stdlib/strtoul.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(unsigned long, strtoul,
(const char *__restrict str, char **__restrict str_end,
@@ -26,4 +26,4 @@ LLVM_LIBC_FUNCTION(unsigned long, strtoul,
return result;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE