mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-04-23 15:29:11 +00:00
11 lines
155 B
C
11 lines
155 B
C
|
#ifndef COMPAT_H
|
||
|
#define COMPAT_H
|
||
|
|
||
|
#if defined(_WIN32) && defined(__GNUC__)
|
||
|
#define SYSVABI __attribute__((sysv_abi))
|
||
|
#else
|
||
|
#define SYSVABI
|
||
|
#endif
|
||
|
|
||
|
#endif
|