Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-plugin/pr21382a.c

18 lines
124 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
#include <stdio.h>
extern void y (void);
void
x (void)
{
printf ("PASS\n");
}
int
main (void)
{
y ();
return 0;
}