blob: 35ef352bc6dac8ace3840f907c678aeeadf94e6b [file] [log] [blame]
void foo(void);
void bar(void);
int test(int b)
{
void *p, **q;
if (b)
p = (void *)foo;
else
p = (void *)bar;
q = (void **)p;
if (*q == (void *)0)
return 1;
return 0;
}