17fc9fb9fSlntue //===-- Implementation header for cbrt --------------------------*- C++ -*-===// 27fc9fb9fSlntue // 37fc9fb9fSlntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 47fc9fb9fSlntue // See https://llvm.org/LICENSE.txt for license information. 57fc9fb9fSlntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 67fc9fb9fSlntue // 77fc9fb9fSlntue //===----------------------------------------------------------------------===// 87fc9fb9fSlntue 97fc9fb9fSlntue #ifndef LLVM_LIBC_SRC_MATH_CBRT_H 107fc9fb9fSlntue #define LLVM_LIBC_SRC_MATH_CBRT_H 117fc9fb9fSlntue 12*03dcefe0SJoseph Huber #include "src/__support/macros/config.h" 13*03dcefe0SJoseph Huber 14*03dcefe0SJoseph Huber namespace LIBC_NAMESPACE_DECL { 157fc9fb9fSlntue 167fc9fb9fSlntue double cbrt(double x); 177fc9fb9fSlntue 18*03dcefe0SJoseph Huber } // namespace LIBC_NAMESPACE_DECL 197fc9fb9fSlntue 207fc9fb9fSlntue #endif // LLVM_LIBC_SRC_MATH_CBRT_H 21