foobar.c 101 B

12345678910
  1. #ifdef _WIN32
  2. __declspec(dllimport)
  3. #endif
  4. extern void bar();
  5. int main()
  6. {
  7. bar();
  8. return 0;
  9. }