1 extern int bar(void);
2 
main(void)3 int main(void) {
4   return (bar() == 42) ? 0 : 1;
5 }
6