blob: 0eaa1affd869456b9922ff3764a7c2fe19b5cc97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
volatile int x;
extern void abort ();
__attribute__((weak))
void foobar (void) { x++; }
int main (void)
{
foobar ();
if (x != -1)
abort ();
printf ("PASS\n");
return 0;
}
|