1extern void foo (int);
2
3void bar (unsigned long l)
4{
5  foo(l == 0);
6}
7