7 lines
105 B
C
7 lines
105 B
C
|
#include <complex.h>
|
||
|
double __attribute__ ((const)) cimag (double complex _Z)
|
||
|
{
|
||
|
return __imag__ _Z;
|
||
|
}
|
||
|
|