]> git.ipfire.org Git - thirdparty/glibc.git/blame - ports/sysdeps/alpha/fpu/s_cacosf.c
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / ports / sysdeps / alpha / fpu / s_cacosf.c
CommitLineData
9e42ca8f 1/* Return arc cosine of complex float value.
d4697bc9 2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
9e42ca8f
RH
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
ab84e3ff
PE
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
9e42ca8f
RH
18
19#define __cacosf __cacosf_not_defined
20#define cacosf cacosf_not_defined
21
22#include <complex.h>
23#include <math.h>
24
25#undef __cacosf
26#undef cacosf
27#define __cacosf internal_cacosf
28
29static _Complex float internal_cacosf (_Complex float x);
30
333697c5 31#include <math/s_cacosf.c>
9e42ca8f
RH
32#include "cfloat-compat.h"
33
34#undef __cacosf
35
36c1_cfloat_rettype
37__c1_cacosf (c1_cfloat_decl (x))
38{
39 _Complex float r = internal_cacosf (c1_cfloat_value (x));
40 return c1_cfloat_return (r);
41}
42
43c2_cfloat_rettype
44__c2_cacosf (c2_cfloat_decl (x))
45{
46 _Complex float r = internal_cacosf (c2_cfloat_value (x));
47 return c2_cfloat_return (r);
48}
49
50cfloat_versions (cacosf);