summaryrefslogtreecommitdiff
path: root/libc/src/math/generic/atan2l.cpp
AgeCommit message (Collapse)Author
2025-07-31[libc][math] fix atan2l build failure. (#151413)Muhammad Bassiouni
2025-07-31[libc][math] Refactor atan2 implementation to header-only in ↵Muhammad Bassiouni
src/__support/math folder. (#150968) Part of #147386 in preparation for: https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450
2024-08-15[libc] Add definition for `atan2l` on 64-bit long double platforms (#104489)Joseph Huber
Summary: This just adds `atan2l` for platforms that can implement it as an alias to `atan2`.