Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-ctf/nonrepresentable-2.c

12 lines
121 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
#include <complex.h>
extern int foo (complex int);
int main (void)
{
complex int a = 33.4;
foo (a);
return 1;
}