1 #include "libfoo.h"
2 
3 int func(void);
4 
call_foo()5 int call_foo()
6 {
7   return func() == 1 ? 42 : 0;
8 }
9