mirror of https://github.com/LIJI32/SameBoy.git
Change the internal macro to use hidden, which guarantees a standard ABI
This commit is contained in:
parent
fb3db82d42
commit
0b54eea084
|
@ -24,7 +24,7 @@
|
|||
#define __builtin_bswap16(x) ({ typeof(x) _x = (x); _x >> 8 | _x << 8; })
|
||||
#endif
|
||||
|
||||
#define internal __attribute__((visibility("internal")))
|
||||
#define internal __attribute__((visibility("hidden")))
|
||||
#define noinline __attribute__((noinline))
|
||||
|
||||
#if __clang__
|
||||
|
|
Loading…
Reference in New Issue