1/*
2 * Copyright 2018-2020, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _GNU_MATH_H_
6#define _GNU_MATH_H_
7
8
9#include_next <math.h>
10
11
12#ifdef _GNU_SOURCE
13
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19
20void sincos(double x, double *sin, double *cos);
21void sincosf(float x, float *sin, float *cos);
22void sincosl(long double x, long double *sin, long double *cos);
23
24
25double exp10(double);
26float exp10f(float);
27long double exp10l(long double);
28
29
30#ifdef __cplusplus
31}
32#endif
33
34
35#endif
36
37
38#endif	/* _GNU_MATH_H_ */
39