[libc] Fix incorrect macro usage in shared/sign.h (#150140)

This patch corrects the `using`-declaration in `libc/shared/sign.h`.

The previous change (#150083) incorrectly used the `LIBC_NAMESPACE_DECL`
macro. This is corrected to use `LIBC_NAMESPACE`.
This commit is contained in:
Leandro Lacerda 2025-07-22 22:17:09 -03:00 committed by GitHub
parent 471e59b858
commit 8f410b491e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@
namespace LIBC_NAMESPACE_DECL {
namespace shared {
using LIBC_NAMESPACE_DECL::Sign;
using LIBC_NAMESPACE::Sign;
} // namespace shared
} // namespace LIBC_NAMESPACE_DECL