Files
Wolfgang Thaller f485e125c4 binutils 2.39
2022-10-27 20:45:45 +02:00

17 lines
130 B
C

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