Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-plugin/lto-7a.c
2023-03-06 14:48:14 +01:00

14 lines
154 B
C

#include <stdlib.h>
#include <stdio.h>
int foo = -1;
extern void bar ();
int
main (int argc, char **argv)
{
bar ();
printf ("OK\n");
return 0;
}