7 lines
105 B
Plaintext
Raw Normal View History

2018-10-28 12:09:07 +01:00
extern __device__ int file3_func(int);
int __device__ file2_func(int x)
{
return x + file3_func(x);
}