b.c 236 B

1234567891011121314
  1. #if defined(_WIN32) && defined(COMPILE_FOR_SHARED_LIB)
  2. #define EXPORT __declspec(dllexport)
  3. #else
  4. #define EXPORT
  5. #endif
  6. extern int a(void);
  7. EXPORT int b()
  8. {
  9. return a();
  10. }
  11. #ifndef REQUIRED
  12. #error "REQUIRED needs to be defined"
  13. #endif