math.h
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef _PICO_LLVM_LIBC_MATH_H
8#define _PICO_LLVM_LIBC_MATH_H
9
10#include <__llvm-libc-common.h>
11
12__BEGIN_C_DECLS
13
14double pow(double, double) __NOEXCEPT;
15
16__END_C_DECLS
17
18#include_next <math.h>
19
20#endif // _PICO_LLVM_LIBC_MATH_H