mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +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);
|
|
}
|