aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/230 external project/libfoo/libfoo.c
blob: 3f6228243ad06084bc15151b7c9e9db76e1b48d9 (plain)
1
2
3
4
5
6
7
8
#include "libfoo.h"

int func(void);

int call_foo()
{
  return func() == 1 ? 42 : 0;
}