8 lines
105 B
C
8 lines
105 B
C
extern int func1 (void);
|
|
extern int func2 (void);
|
|
|
|
int
|
|
callthem (void)
|
|
{
|
|
return func1 () + func2 ();
|
|
}
|