summary refs log tree commit diff
path: root/math/s_cpow_template.c
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-07-01 11:03:51 -0500
committerPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-08-29 11:55:41 -0500
commit1dbc54f61e281d3f2c1712dadd12864c42f8a64a (patch)
tree039c7754e2f843648b93acddbb5c4e92f4a74b06 /math/s_cpow_template.c
parentd47d27d6c08fa95c1ed49a8ce96cef2e37736b72 (diff)
downloadglibc-1dbc54f61e281d3f2c1712dadd12864c42f8a64a.tar.gz
glibc-1dbc54f61e281d3f2c1712dadd12864c42f8a64a.tar.xz
glibc-1dbc54f61e281d3f2c1712dadd12864c42f8a64a.zip
Prepare to convert remaining _Complex functions
This patch has no function changes, except to
ensure the git history correctly tracks the
changes to convert the double version of these
functions into a templated version.
Diffstat (limited to 'math/s_cpow_template.c')
-rw-r--r--math/s_cpow_template.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/math/s_cpow_template.c b/math/s_cpow_template.c
new file mode 100644
index 0000000000..037e575b1a
--- /dev/null
+++ b/math/s_cpow_template.c
@@ -0,0 +1,33 @@
+/* Complex power of double values.
+   Copyright (C) 1997-2016 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include <complex.h>
+#include <math.h>
+
+
+__complex__ double
+__cpow (__complex__ double x, __complex__ double c)
+{
+  return __cexp (c * __clog (x));
+}
+weak_alias (__cpow, cpow)
+#ifdef NO_LONG_DOUBLE
+strong_alias (__cpow, __cpowl)
+weak_alias (__cpow, cpowl)
+#endif