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

20 lines
169 B
C

#include <stdio.h>
extern int a7(void);
int
a0(void)
{
return 0;
}
int
main()
{
if (a7() == 7)
{
printf ("PASS\n");
return 0;
}
return 1;
}