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

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