bar.c 131 B

123456789101112
  1. #ifdef _WIN32
  2. __declspec(dllimport)
  3. #endif
  4. void foo(void);
  5. #include <stdio.h>
  6. void bar(void)
  7. {
  8. foo();
  9. printf("bar()\n");
  10. }