aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/gpu/vfprintf.cpp
diff options
context:
space:
mode:
authorJoseph Huber <huberjn@outlook.com>2024-10-28 13:47:31 -0700
committerGitHub <noreply@github.com>2024-10-28 13:47:31 -0700
commit03dcefe08ecb68a3fedb7e9de6277df77371e9fc (patch)
treed04adedb24a8b1b829c895a24f7924994034d538 /libc/src/stdio/gpu/vfprintf.cpp
parent71315698c91d0cda054b903da0594ca6f072c350 (diff)
downloadllvm-03dcefe08ecb68a3fedb7e9de6277df77371e9fc.zip
llvm-03dcefe08ecb68a3fedb7e9de6277df77371e9fc.tar.gz
llvm-03dcefe08ecb68a3fedb7e9de6277df77371e9fc.tar.bz2
[libc] Fix leftover `LIBC_NAMESPACE` after porting it (#113960)
Summary: There are a few of these leftover, they should all use the `LIBC_NAMESPACE_DECL` version because that implies visibility.
Diffstat (limited to 'libc/src/stdio/gpu/vfprintf.cpp')
-rw-r--r--libc/src/stdio/gpu/vfprintf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/stdio/gpu/vfprintf.cpp b/libc/src/stdio/gpu/vfprintf.cpp
index 961cfa4..c92685f 100644
--- a/libc/src/stdio/gpu/vfprintf.cpp
+++ b/libc/src/stdio/gpu/vfprintf.cpp
@@ -14,7 +14,7 @@
#include "src/errno/libc_errno.h"
#include "src/stdio/gpu/vfprintf_utils.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, vfprintf,
(::FILE *__restrict stream, const char *__restrict format,
@@ -24,4 +24,4 @@ LLVM_LIBC_FUNCTION(int, vfprintf,
return ret_val;
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL