1 int myFunc (void);
2 
main(void)3 int main(void)
4 {
5   if (myFunc() == 55)
6     return 0;
7   return 1;
8 }
9