mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
16 lines
108 B
C
16 lines
108 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
extern int counter;
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
counter++;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
abort ();
|
||
|
}
|