mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
7 lines
105 B
Plaintext
7 lines
105 B
Plaintext
|
|
extern __device__ int file3_func(int);
|
|
int __device__ file2_func(int x)
|
|
{
|
|
return x + file3_func(x);
|
|
}
|