mirror of
https://github.com/autc04/Retro68.git
synced 2026-04-20 17:20:09 +00:00
17 lines
130 B
C
17 lines
130 B
C
#include <stdlib.h>
|
|
|
|
extern int counter;
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
counter++;
|
|
}
|
|
|
|
__attribute__((weak))
|
|
void
|
|
bar (void)
|
|
{
|
|
abort ();
|
|
}
|