blob: 563b9b2fb09b2c60c3bad36bb32e86b5830ae235 [file] [log] [blame]
#include <cuda.h>
#ifdef _WIN32
# define IMPORT __declspec(dllimport)
#else
# define IMPORT
#endif
IMPORT int simplelib();
int main(void)
{
return simplelib();
}