Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/musl/src/internal/complex_impl.h
4398 views
1
#ifndef _COMPLEX_IMPL_H
2
#define _COMPLEX_IMPL_H
3
4
#include <complex.h>
5
#include "libm.h"
6
7
#undef CMPLX
8
#undef CMPLXF
9
#undef CMPLXL
10
11
#define CMPLX(x, y) _Cbuild(x, y)
12
#define CMPLXF(x, y) _FCbuild(x, y)
13
#define CMPLXL(x, y) _LCbuild(x, y)
14
15
hidden _Dcomplex __ldexp_cexp(_Dcomplex,int);
16
hidden _Fcomplex __ldexp_cexpf(_Fcomplex,int);
17
18
#endif
19
20