]> git.ipfire.org Git - thirdparty/gcc.git/blame - libquadmath/quadmath_weak.h
Remove freebsd1 from libtool.m4 macros and config.rpath.
[thirdparty/gcc.git] / libquadmath / quadmath_weak.h
CommitLineData
545a5cb6 1/* GCC Quad-Precision Math Library
b5d4b580 2 Copyright (C) 2010, 2011 Free Software Foundation, Inc.
545a5cb6
TB
3 Written by Tobias Burnus <burnus@net-b.de>
4
b5d4b580
TB
5This file is part of the libquadmath library.
6Libquadmath is free software; you can redistribute it and/or
545a5cb6
TB
7modify it under the terms of the GNU Library General Public
8License as published by the Free Software Foundation; either
9version 2 of the License, or (at your option) any later version.
10
b5d4b580 11Libquadmath is distributed in the hope that it will be useful,
545a5cb6
TB
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14Library General Public License for more details.
15
16You should have received a copy of the GNU Library General Public
b5d4b580 17License along with libquadmath; see the file COPYING.LIB. If
545a5cb6
TB
18not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19Boston, MA 02110-1301, USA. */
20
1ec601bf
FXC
21#ifndef QUADMATH_WEAK_H
22#define QUADMATH_WEAK_H
23
24#include "quadmath.h"
25
26#if SUPPORTS_WEAK
27# define __qmath2(name,name2,type) \
28 static __typeof(type) name __attribute__ ((__weakref__(#name2)));
29# define __qmath_(name) __qmath_ ## name
30#else
31# define __qmath2(name,name2,type)
32# define __qmath_(name) name
33#endif
34
35/* __qmath_foo is a weak reference to symbol foo. */
36#define __qmath3(name) __qmath2(__qmath_ ## name,name,name)
37
b5d4b580 38/* Prototypes for real functions. */
1ec601bf
FXC
39__qmath3 (acosq)
40__qmath3 (acoshq)
41__qmath3 (asinq)
42__qmath3 (asinhq)
43__qmath3 (atanq)
44__qmath3 (atanhq)
45__qmath3 (atan2q)
46__qmath3 (cbrtq)
47__qmath3 (ceilq)
48__qmath3 (copysignq)
49__qmath3 (coshq)
50__qmath3 (cosq)
51__qmath3 (erfq)
52__qmath3 (erfcq)
53__qmath3 (expq)
54__qmath3 (expm1q)
55__qmath3 (fabsq)
dbc9f6c6 56__qmath3 (fdimq)
1ec601bf
FXC
57__qmath3 (finiteq)
58__qmath3 (floorq)
e8d42d28 59__qmath3 (fmaq)
dbc9f6c6
JJ
60__qmath3 (fmaxq)
61__qmath3 (fminq)
1ec601bf
FXC
62__qmath3 (fmodq)
63__qmath3 (frexpq)
64__qmath3 (hypotq)
dbc9f6c6 65__qmath3 (ilogbq)
1ec601bf
FXC
66__qmath3 (isinfq)
67__qmath3 (isnanq)
68__qmath3 (j0q)
69__qmath3 (j1q)
70__qmath3 (jnq)
71__qmath3 (ldexpq)
72__qmath3 (lgammaq)
dbc9f6c6 73__qmath3 (llrintq)
1ec601bf
FXC
74__qmath3 (llroundq)
75__qmath3 (logq)
76__qmath3 (log10q)
77__qmath3 (log1pq)
dbc9f6c6
JJ
78__qmath3 (log2q)
79__qmath3 (lrintq)
1ec601bf
FXC
80__qmath3 (lroundq)
81__qmath3 (modfq)
82__qmath3 (nanq)
dbc9f6c6 83__qmath3 (nearbyintq)
1ec601bf
FXC
84__qmath3 (nextafterq)
85__qmath3 (powq)
86__qmath3 (remainderq)
dbc9f6c6 87__qmath3 (remquoq)
1ec601bf
FXC
88__qmath3 (rintq)
89__qmath3 (roundq)
90__qmath3 (scalblnq)
91__qmath3 (scalbnq)
92__qmath3 (signbitq)
93__qmath3 (sincosq)
94__qmath3 (sinhq)
95__qmath3 (sinq)
96__qmath3 (sqrtq)
97__qmath3 (tanq)
98__qmath3 (tanhq)
99__qmath3 (tgammaq)
100__qmath3 (truncq)
101__qmath3 (y0q)
102__qmath3 (y1q)
103__qmath3 (ynq)
104
105
b5d4b580 106/* Prototypes for complex functions. */
1ec601bf
FXC
107__qmath3 (cabsq)
108__qmath3 (cargq)
dbc9f6c6
JJ
109__qmath3 (cimagq)
110__qmath3 (crealq)
fa23b182
JJ
111__qmath3 (cacosq)
112__qmath3 (cacoshq)
113__qmath3 (casinq)
114__qmath3 (casinhq)
115__qmath3 (catanq)
116__qmath3 (catanhq)
1ec601bf
FXC
117__qmath3 (ccosq)
118__qmath3 (ccoshq)
119__qmath3 (cexpq)
120__qmath3 (cexpiq)
121__qmath3 (clogq)
122__qmath3 (clog10q)
dbc9f6c6 123__qmath3 (conjq)
1ec601bf 124__qmath3 (cpowq)
dbc9f6c6 125__qmath3 (cprojq)
1ec601bf
FXC
126__qmath3 (csinq)
127__qmath3 (csinhq)
128__qmath3 (csqrtq)
129__qmath3 (ctanq)
130__qmath3 (ctanhq)
131
132
b5d4b580 133/* Prototypes for string <-> flt128 conversion functions. */
e313241f
JJ
134__qmath3 (strtoflt128)
135__qmath3 (quadmath_flt128tostr)
1ec601bf
FXC
136
137#endif