diff options
Diffstat (limited to 'libc/src/stdlib/ldiv.cpp')
| -rw-r--r-- | libc/src/stdlib/ldiv.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdlib/ldiv.cpp b/libc/src/stdlib/ldiv.cpp index 57e225006337..94f385f12b02 100644 --- a/libc/src/stdlib/ldiv.cpp +++ b/libc/src/stdlib/ldiv.cpp @@ -9,8 +9,9 @@ #include "src/stdlib/ldiv.h" #include "src/__support/common.h" #include "src/__support/integer_operations.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(ldiv_t, ldiv, (long x, long y)) { ldiv_t res; @@ -18,4 +19,4 @@ LLVM_LIBC_FUNCTION(ldiv_t, ldiv, (long x, long y)) { return res; } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
