Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-ctf/nonrepresentable-2.c
2023-03-06 14:48:14 +01:00

11 lines
121 B
C

#include <complex.h>
extern int foo (complex int);
int main (void)
{
complex int a = 33.4;
foo (a);
return 1;
}