blob: b54d2fcdaa9b6d6e6260d7ace4a9e1891ec08966 [file] [log] [blame]
Elliott Hughesa0ee0782013-01-30 19:06:37 -08001/*-
2 * Copyright (c) 2001-2011 The FreeBSD Project.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#ifndef _COMPLEX_H
30#define _COMPLEX_H
31
32#include <sys/cdefs.h>
33
34#ifdef __GNUC__
Elliott Hughesa0ee0782013-01-30 19:06:37 -080035#define _Complex_I ((float _Complex)1.0i)
36#endif
37
38#ifdef __generic
39_Static_assert(__generic(_Complex_I, float _Complex, 1, 0),
40 "_Complex_I must be of type float _Complex");
41#endif
42
43#define complex _Complex
44#define I _Complex_I
45
Elliott Hughesb8ee16f2014-11-06 11:16:55 -080046#if __ISO_C_VISIBLE >= 2011
47#ifdef __clang__
48#define CMPLX(x, y) ((double complex){ x, y })
49#define CMPLXF(x, y) ((float complex){ x, y })
50#define CMPLXL(x, y) ((long double complex){ x, y })
Elliott Hughes9ee6adb2016-03-11 14:49:13 -080051#else
Elliott Hughesb8ee16f2014-11-06 11:16:55 -080052#define CMPLX(x, y) __builtin_complex((double)(x), (double)(y))
53#define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y))
54#define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y))
55#endif
56#endif /* __ISO_C_VISIBLE >= 2011 */
57
Elliott Hughesa0ee0782013-01-30 19:06:37 -080058__BEGIN_DECLS
Elliott Hughesb8ee16f2014-11-06 11:16:55 -080059#pragma GCC visibility push(default)
Elliott Hughesa0ee0782013-01-30 19:06:37 -080060
Elliott Hughes9ee6adb2016-03-11 14:49:13 -080061/* 7.3.5 Trigonometric functions */
62/* 7.3.5.1 The cacos functions */
63double complex cacos(double complex);
64float complex cacosf(float complex);
65long double complex cacosl(long double complex);
66/* 7.3.5.2 The casin functions */
67double complex casin(double complex);
68float complex casinf(float complex);
69long double complex casinl(long double complex);
70/* 7.3.5.1 The catan functions */
71double complex catan(double complex);
72float complex catanf(float complex);
73long double complex catanl(long double complex);
74/* 7.3.5.1 The ccos functions */
75double complex ccos(double complex);
76float complex ccosf(float complex);
77long double complex ccosl(long double complex);
78/* 7.3.5.1 The csin functions */
79double complex csin(double complex);
80float complex csinf(float complex);
81long double complex csinl(long double complex);
82/* 7.3.5.1 The ctan functions */
83double complex ctan(double complex);
84float complex ctanf(float complex);
85long double complex ctanl(long double complex);
86
87/* 7.3.6 Hyperbolic functions */
88/* 7.3.6.1 The cacosh functions */
89double complex cacosh(double complex);
90float complex cacoshf(float complex);
91long double complex cacoshl(long double complex);
92/* 7.3.6.2 The casinh functions */
93double complex casinh(double complex);
94float complex casinhf(float complex);
95long double complex casinhl(long double complex);
96/* 7.3.6.3 The catanh functions */
97double complex catanh(double complex);
98float complex catanhf(float complex);
99long double complex catanhl(long double complex);
100/* 7.3.6.4 The ccosh functions */
101double complex ccosh(double complex);
102float complex ccoshf(float complex);
103long double complex ccoshl(long double complex);
104/* 7.3.6.5 The csinh functions */
105double complex csinh(double complex);
106float complex csinhf(float complex);
107long double complex csinhl(long double complex);
108/* 7.3.6.6 The ctanh functions */
109double complex ctanh(double complex);
110float complex ctanhf(float complex);
111long double complex ctanhl(long double complex);
112
113/* 7.3.7 Exponential and logarithmic functions */
114/* 7.3.7.1 The cexp functions */
115double complex cexp(double complex);
116float complex cexpf(float complex);
117long double complex cexpl(long double complex);
118/* 7.3.7.2 The clog functions */
119double complex clog(double complex);
120float complex clogf(float complex);
121long double complex clogl(long double complex);
122
123/* 7.3.8 Power and absolute-value functions */
124/* 7.3.8.1 The cabs functions */
125double cabs(double complex);
126float cabsf(float complex);
127long double cabsl(long double complex);
128/* 7.3.8.2 The cpow functions */
129double complex cpow(double complex, double complex);
130float complex cpowf(float complex, float complex);
131long double complex cpowl(long double complex, long double complex);
132/* 7.3.8.3 The csqrt functions */
133double complex csqrt(double complex);
134float complex csqrtf(float complex);
135long double complex csqrtl(long double complex);
136
137/* 7.3.9 Manipulation functions */
138/* 7.3.9.1 The carg functions */
139double carg(double complex);
140float cargf(float complex);
141long double cargl(long double complex);
142/* 7.3.9.2 The cimag functions */
143double cimag(double complex);
144float cimagf(float complex);
145long double cimagl(long double complex);
146/* 7.3.9.3 The conj functions */
147double complex conj(double complex);
148float complex conjf(float complex);
149long double complex conjl(long double complex);
150/* 7.3.9.4 The cproj functions */
151double complex cproj(double complex);
152float complex cprojf(float complex);
153long double complex cprojl(long double complex);
154/* 7.3.9.5 The creal functions */
155double creal(double complex);
156float crealf(float complex);
157long double creall(long double complex);
Elliott Hughesa0ee0782013-01-30 19:06:37 -0800158
Elliott Hughesb8ee16f2014-11-06 11:16:55 -0800159#pragma GCC visibility pop
Elliott Hughesa0ee0782013-01-30 19:06:37 -0800160__END_DECLS
161
162#endif /* _COMPLEX_H */