Fixed imagined bug in subject pattern match about
[unix-history] / .ref-BSD-3 / usr / src / libF77 / pow_ci.c
CommitLineData
0ee0e326
BJ
1#include "complex"
2
3pow_ci(p, a, b) /* p = a**b */
4complex *p, *a;
5long int *b;
6{
7dcomplex p1, a1;
8
9a1.dreal = a->real;
10a1.dimag = a->imag;
11
12pow_zi(&p1, &a1, b);
13
14p->real = p1.dreal;
15p->imag = p1.dimag;
16}