Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cimag.c « complex « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6b32561c0a402e29cfcfd3248a49a2fefabfd5e (plain)
1
2
3
4
5
6
#include <complex.h>
double __attribute__ ((const)) cimag (double complex _Z)
{
  return __imag__ _Z;
}