summaryrefslogtreecommitdiff
path: root/Tests/Cuda/Complex/dynamic.cpp
blob: 38da6a6a8a1c3169a3b25511ba9a9863957b8976 (plain)
1
2
3
4
5
6
7
8
9
10
11

#ifdef _WIN32
#  define EXPORT __declspec(dllexport)
#else
#  define EXPORT
#endif

EXPORT int dynamic_base_func(int x)
{
  return x * x;
}