xref: /dragonfly/contrib/mpc/src/mpc-log.h (revision d4ef6694)
1 /* mpc-log.h -- Include file to enable function call logging; replaces mpc.h.
2 
3 Copyright (C) 2011 INRIA
4 
5 This file is part of GNU MPC.
6 
7 GNU MPC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU Lesser General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
15 more details.
16 
17 You should have received a copy of the GNU Lesser General Public License
18 along with this program. If not, see http://www.gnu.org/licenses/ .
19 */
20 
21 #define mpc_sqr mpc_log_sqr
22 #define mpc_conj mpc_log_conj
23 #define mpc_neg mpc_log_neg
24 #define mpc_sqrt mpc_log_sqrt
25 #define mpc_proj mpc_log_proj
26 #define mpc_exp mpc_log_exp
27 #define mpc_log mpc_log_log
28 #define mpc_sin mpc_log_sin
29 #define mpc_cos mpc_log_cos
30 #define mpc_tan mpc_log_tan
31 #define mpc_sinh mpc_log_sinh
32 #define mpc_cosh mpc_log_cosh
33 #define mpc_tanh mpc_log_tanh
34 #define mpc_asin mpc_log_asin
35 #define mpc_acos mpc_log_acos
36 #define mpc_atan mpc_log_atan
37 #define mpc_asinh mpc_log_asinh
38 #define mpc_acosh mpc_log_acosh
39 #define mpc_atanh mpc_log_atanh
40 
41 #define mpc_add mpc_log_add
42 #define mpc_sub mpc_log_sub
43 #define mpc_mul mpc_log_mul
44 #define mpc_div mpc_log_div
45 #define mpc_pow mpc_log_pow
46 
47 #define mpc_fma mpc_log_fma
48 
49 #define mpc_sin_cos mpc_log_sin_cos
50 
51 #include "mpc.h"
52