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

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