mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Make the return types of the extern function declared in `main.cpp` match those in the method implementations.
15 lines
237 B
C++
15 lines
237 B
C++
#include <iostream>
|
|
|
|
#include "file1.h"
|
|
#include "file2.h"
|
|
|
|
int call_cuda_seperable_code(int x);
|
|
int mixed_launch_kernel(int x);
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
call_cuda_seperable_code(42);
|
|
mixed_launch_kernel(42);
|
|
return 0;
|
|
}
|