main.c 197 B

123456789101112
  1. #if defined _WIN32 || defined __CYGWIN__
  2. #define DLL_IMPORT __declspec(dllimport)
  3. #else
  4. #define DLL_IMPORT
  5. #endif
  6. int DLL_IMPORT func();
  7. int main(int argc, char **arg) {
  8. return func();
  9. }