summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/DependencyGraph/middle.c
blob: 3b1b84c790d7bce1bb82ef3d79622ba81a016cfa (plain)
1
2
3
4
5
6
7
8
9
#ifdef _WIN32
__declspec(dllimport)
#endif
  int bottom(void);

int middle(void)
{
  return bottom() + 19;
}