Change the internal macro to use hidden, which guarantees a standard ABI

This commit is contained in:
Lior Halphon 2023-08-04 19:53:52 +03:00
parent fb3db82d42
commit 0b54eea084
1 changed files with 1 additions and 1 deletions

View File

@ -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__