extern int funcOBJ(void);
extern int funcOBJ2(void);
extern int funcOBJs(void);
int main(void)
{
return funcOBJ() + funcOBJ2() + funcOBJs();
}