summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/ObjectLibrary/static.cpp
blob: 6db1f914fcbbe13dc1f57c8ed8b85d8cef6bd867 (plain)
1
2
3
4
5
6
int file1_sq_func(int);

int static_func(int x)
{
  return file1_sq_func(x);
}