mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-09 02:31:03 +02:00
Change the internal macro to use hidden, which guarantees a standard ABI
This commit is contained in:
@@ -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__
|
||||
|
Reference in New Issue
Block a user