Add copyright
[unix-history] / usr / src / usr.bin / f77 / libF77 / pow_ci.c
CommitLineData
00764449
DW
1/*
2 * "@(#)pow_ci.c 1.1"
3 */
4
5#include "complex"
6
7pow_ci(p, a, b) /* p = a**b */
8complex *p, *a;
9long int *b;
10{
11dcomplex p1, a1;
12
13a1.dreal = a->real;
14a1.dimag = a->imag;
15
16pow_zi(&p1, &a1, b);
17
18p->real = p1.dreal;
19p->imag = p1.dimag;
20}