mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-25 02:02:57 -03:00
10 lines
155 B
C
10 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
|