23 lines
163 B
C
23 lines
163 B
C
|
int glob;
|
||
|
|
||
|
g (x)
|
||
|
{
|
||
|
glob = x;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
f (x)
|
||
|
{
|
||
|
int a = ~x;
|
||
|
while (a)
|
||
|
a = g (a);
|
||
|
}
|
||
|
|
||
|
main ()
|
||
|
{
|
||
|
f (3);
|
||
|
if (glob != -4)
|
||
|
abort ();
|
||
|
exit (0);
|
||
|
}
|