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

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