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

17 lines
130 B
C

#include <stdlib.h>
extern int counter;
void
foo (void)
{
counter++;
}
__attribute__((weak))
void
bar (void)
{
abort ();
}