Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
3bab70b5ab778237d43279c5973257efe950a5fd
/
.
/
Tests
/
Cuda
/
WithC
/
main.c
blob: 5f3c781b0b80f6e144479ff7b537c1fcd03f80ee [
file
]
extern
int
use_cuda
(
void
);
#ifdef
_WIN32
# include <windows.h>
#endif
int
main
()
{
#ifdef
_WIN32
/* Use an API that requires CMake's "standard" C libraries. */
GetOpenFileName
(
NULL
);
#endif
return
use_cuda
();
}