mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
6 lines
168 B
C
Vendored
6 lines
168 B
C
Vendored
unsigned short __cdecl _byteswap_ushort(unsigned short _Short);
|
|
|
|
unsigned short __cdecl _byteswap_ushort(unsigned short _Short)
|
|
{
|
|
return __builtin_bswap16(_Short);
|
|
}
|