LinkObjLHSShared.c 241 B

1234567891011121314151617
  1. #ifndef REQUIRED
  2. # error "REQUIRED not defined"
  3. #endif
  4. #if defined(_WIN32)
  5. # define IMPORT __declspec(dllimport)
  6. #else
  7. # define IMPORT
  8. #endif
  9. IMPORT int a(void);
  10. extern int required(void);
  11. int main(void)
  12. {
  13. return required() + a();
  14. }