10 lines
119 B
C

extern int one(void);
extern int two(void);
int main(int argc, char * argv[])
{
one();
two();
return 0;
}