meson/test cases/common/230 external project/libfoo/libfoo.c

9 lines
88 B
C

#include "libfoo.h"
int func(void);
int call_foo()
{
return func() == 1 ? 42 : 0;
}