compat.h 155 B

12345678910
  1. #ifndef COMPAT_H
  2. #define COMPAT_H
  3. #if defined(_WIN32) && defined(__GNUC__)
  4. #define SYSVABI __attribute__((sysv_abi))
  5. #else
  6. #define SYSVABI
  7. #endif
  8. #endif