aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/vprintf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdio/vprintf.cpp')
-rw-r--r--libc/src/stdio/vprintf.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/src/stdio/vprintf.cpp b/libc/src/stdio/vprintf.cpp
index 0789ee9..eff968d 100644
--- a/libc/src/stdio/vprintf.cpp
+++ b/libc/src/stdio/vprintf.cpp
@@ -16,12 +16,12 @@
#include <stdio.h>
#ifndef LIBC_COPT_STDIO_USE_SYSTEM_FILE
-#define PRINTF_STDOUT __llvm_libc::stdout
+#define PRINTF_STDOUT LIBC_NAMESPACE::stdout
#else // LIBC_COPT_STDIO_USE_SYSTEM_FILE
#define PRINTF_STDOUT ::stdout
#endif // LIBC_COPT_STDIO_USE_SYSTEM_FILE
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(int, vprintf,
(const char *__restrict format, va_list vlist)) {
@@ -33,4 +33,4 @@ LLVM_LIBC_FUNCTION(int, vprintf,
return ret_val;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE