9 lines
88 B
C
9 lines
88 B
C
![]() |
#include "libfoo.h"
|
||
|
|
||
|
int func(void);
|
||
|
|
||
|
int call_foo()
|
||
|
{
|
||
|
return func() == 1 ? 42 : 0;
|
||
|
}
|