test_test_lib.c 201 B

1234567891011121314
  1. #include <stdio.h>
  2. #if _MSC_VER
  3. _declspec(dllimport) extern int num;
  4. #else
  5. extern int num;
  6. #endif
  7. int test(int a);
  8. int main() {
  9. printf("num = %d test = %d\n", num, test(100));
  10. return 0;
  11. }