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