1546c9b3fSEthan Luis McDonough //===-- Implementation header for pow ---------------------------*- C++ -*-===// 2546c9b3fSEthan Luis McDonough // 3546c9b3fSEthan Luis McDonough // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4546c9b3fSEthan Luis McDonough // See https://llvm.org/LICENSE.txt for license information. 5546c9b3fSEthan Luis McDonough // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6546c9b3fSEthan Luis McDonough // 7546c9b3fSEthan Luis McDonough //===----------------------------------------------------------------------===// 8546c9b3fSEthan Luis McDonough 9546c9b3fSEthan Luis McDonough #ifndef LLVM_LIBC_SRC_MATH_POW_H 10546c9b3fSEthan Luis McDonough #define LLVM_LIBC_SRC_MATH_POW_H 11546c9b3fSEthan Luis McDonough 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 13*5ff3ff33SPetr Hosek 14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 15546c9b3fSEthan Luis McDonough 16546c9b3fSEthan Luis McDonough double pow(double x, double y); 17546c9b3fSEthan Luis McDonough 18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 19546c9b3fSEthan Luis McDonough 20546c9b3fSEthan Luis McDonough #endif // LLVM_LIBC_SRC_MATH_POW_H 21