summaryrefslogtreecommitdiffstats
path: root/Tests/BuildDepends/Project/link_depends_no_shared_exe.c
blob: cfaf05135b9a477f884c4b7e7e13befa79fc8010 (plain)
1
2
3
4
5
6
7
8
9
#include "link_depends_no_shared_exe.h"
#ifdef _WIN32
__declspec(dllimport)
#endif
  int link_depends_no_shared_lib(void);
int main()
{
  return link_depends_no_shared_lib() + link_depends_no_shared_exe_value;
}