summaryrefslogtreecommitdiffstats
path: root/Tests/Framework/foo.cxx
blob: 521f6f21ea8b982a2737e99fddb91321c67e025d (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#ifdef _WIN32
#  define CM_TEST_LIB_EXPORT  __declspec( dllexport )
#endif
CM_TEST_LIB_EXPORT void foo()
{
  printf("foo\n");
}