mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-12 09:44:57 +08:00
4d85a6fea6
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
16 lines
247 B
C
16 lines
247 B
C
#include "f2c.h"
|
|
|
|
extern void pow_zi(doublecomplex*, doublecomplex*, integer*);
|
|
void pow_ci(complex *p, complex *a, integer *b) /* p = a**b */
|
|
{
|
|
doublecomplex p1, a1;
|
|
|
|
a1.r = a->r;
|
|
a1.i = a->i;
|
|
|
|
pow_zi(&p1, &a1, b);
|
|
|
|
p->r = p1.r;
|
|
p->i = p1.i;
|
|
}
|