diff options
Diffstat (limited to 'libc/src/stdbit/stdc_bit_width_ull.cpp')
| -rw-r--r-- | libc/src/stdbit/stdc_bit_width_ull.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdbit/stdc_bit_width_ull.cpp b/libc/src/stdbit/stdc_bit_width_ull.cpp index 006fa20b2de5..b720b45d1620 100644 --- a/libc/src/stdbit/stdc_bit_width_ull.cpp +++ b/libc/src/stdbit/stdc_bit_width_ull.cpp @@ -10,11 +10,12 @@ #include "src/__support/CPP/bit.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(unsigned, stdc_bit_width_ull, (unsigned long long value)) { return static_cast<unsigned>(cpp::bit_width(value)); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
