mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
12 lines
121 B
C
12 lines
121 B
C
|
#include <complex.h>
|
||
|
|
||
|
extern int foo (complex int);
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
complex int a = 33.4;
|
||
|
foo (a);
|
||
|
|
||
|
return 1;
|
||
|
}
|