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

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