26-08-2011, 08:40 PM
Please consider the following snippet:
Code:
static int foo1(void) {
return 0;
}
static int foo2(void) {
return 1;
}
int foo() {
/* Is the following occurrence of `foo1' compliant wrt 16.9? */
if (&(foo1) == &foo2)
return 0;
return 1;
}
<t></t>