diff options
author | Joseph Huber <huberjn@outlook.com> | 2024-10-28 13:47:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 13:47:31 -0700 |
commit | 03dcefe08ecb68a3fedb7e9de6277df77371e9fc (patch) | |
tree | d04adedb24a8b1b829c895a24f7924994034d538 /libc/src/stdio/gpu/vfprintf.cpp | |
parent | 71315698c91d0cda054b903da0594ca6f072c350 (diff) | |
download | llvm-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.cpp | 4 |
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 |