mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 10:39:25 +08:00
7 lines
105 B
C
7 lines
105 B
C
|
#include <complex.h>
|
||
|
double __attribute__ ((const)) creal (double complex _Z)
|
||
|
{
|
||
|
return __real__ _Z;
|
||
|
}
|
||
|
|