Move *-*-gnu* pattern below *-*-linux*.
[official-gcc.git] / libf2c / libF77 / pow_ci.c
blob37e2ce0f2eb9d90b0abe72ab0cc292da8b03160b
1 #include "f2c.h"
3 #ifdef KR_headers
4 VOID pow_ci(p, a, b) /* p = a**b */
5 complex *p, *a; integer *b;
6 #else
7 extern void pow_zi(doublecomplex*, doublecomplex*, integer*);
8 void pow_ci(complex *p, complex *a, integer *b) /* p = a**b */
9 #endif
11 doublecomplex p1, a1;
13 a1.r = a->r;
14 a1.i = a->i;
16 pow_zi(&p1, &a1, b);
18 p->r = p1.r;
19 p->i = p1.i;