summaryrefslogtreecommitdiff
path: root/libc/src/stdlib/strtoull.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdlib/strtoull.cpp')
-rw-r--r--libc/src/stdlib/strtoull.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdlib/strtoull.cpp b/libc/src/stdlib/strtoull.cpp
index de3a0d04b2cb..dba22611cfb0 100644
--- a/libc/src/stdlib/strtoull.cpp
+++ b/libc/src/stdlib/strtoull.cpp
@@ -8,10 +8,11 @@
#include "src/stdlib/strtoull.h"
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
#include "src/__support/str_to_integer.h"
#include "src/errno/libc_errno.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(unsigned long long, strtoull,
(const char *__restrict str, char **__restrict str_end,
@@ -26,4 +27,4 @@ LLVM_LIBC_FUNCTION(unsigned long long, strtoull,
return result;
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL