[libc-commits] [libc] [libc] Add definition for `atan2l` on 64-bit long double platforms (PR #104489)
via libc-commits
libc-commits at lists.llvm.org
Thu Aug 15 12:47:42 PDT 2024
================
@@ -0,0 +1,27 @@
+//===-- Extended-precision atan2 function ---------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/atan2l.h"
+
+#include "src/__support/common.h"
----------------
overmighty wrote:
Nit: we usually don't have a blank line between the include for the corresponding header and the other includes in math functions.
https://github.com/llvm/llvm-project/pull/104489
More information about the libc-commits
mailing list