rt_gccstream/gcc/testsuite/gcc.c-torture/compile/complex-1.c

13 lines
146 B
C

extern void u (int, int);
extern void v (float, float);
void f (__complex__ int x)
{
u (0, x);
}
void g (__complex__ float x)
{
v (0, x);
}