diff options
Diffstat (limited to 'libc/src/stdio/sprintf.cpp')
| -rw-r--r-- | libc/src/stdio/sprintf.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdio/sprintf.cpp b/libc/src/stdio/sprintf.cpp index 11f2f1a8634f..1f59e6bae472 100644 --- a/libc/src/stdio/sprintf.cpp +++ b/libc/src/stdio/sprintf.cpp @@ -10,12 +10,13 @@ #include "src/__support/CPP/limits.h" #include "src/__support/arg_list.h" +#include "src/__support/macros/config.h" #include "src/stdio/printf_core/printf_main.h" #include "src/stdio/printf_core/writer.h" #include <stdarg.h> -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(int, sprintf, (char *__restrict buffer, const char *__restrict format, @@ -35,4 +36,4 @@ LLVM_LIBC_FUNCTION(int, sprintf, return ret_val; } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
