diff options
Diffstat (limited to 'libc/src/stdlib/strtol.cpp')
| -rw-r--r-- | libc/src/stdlib/strtol.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdlib/strtol.cpp b/libc/src/stdlib/strtol.cpp index e9bedf237166..77f8712d7c13 100644 --- a/libc/src/stdlib/strtol.cpp +++ b/libc/src/stdlib/strtol.cpp @@ -8,10 +8,11 @@ #include "src/stdlib/strtol.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(long, strtol, (const char *__restrict str, char **__restrict str_end, @@ -26,4 +27,4 @@ LLVM_LIBC_FUNCTION(long, strtol, return result; } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
