17 lines
209 B
Plaintext
Raw Normal View History

2023-12-07 09:12:54 +01:00
// main.cu
#include <iostream>
#ifdef _WIN32
# define IMPORT __declspec(dllimport)
#else
# define IMPORT
#endif
IMPORT int foo();
IMPORT int bar();
int main(int argc, char**)
{
return foo() && bar();
}