Annotation of 3BSD/libF77/pow_ci.c, revision 1.1

1.1     ! root        1: #include "complex"
        !             2: 
        !             3: pow_ci(p, a, b)        /* p = a**b  */
        !             4: complex *p, *a;
        !             5: long int *b;
        !             6: {
        !             7: dcomplex p1, a1;
        !             8: 
        !             9: a1.dreal = a->real;
        !            10: a1.dimag = a->imag;
        !            11: 
        !            12: pow_zi(&p1, &a1, b);
        !            13: 
        !            14: p->real = p1.dreal;
        !            15: p->imag = p1.dimag;
        !            16: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.