blob: 02a365b56447c8ae8c942c721add9277c138beba [file] [log] [blame]
#include <stdio.h>
int x;
__attribute__((weak))
void foobar (void) { x++; }
int main (void)
{
foobar ();
if (x == -1)
printf ("OK\n");
return 0;
}