mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-26 18:44:28 -04:00
7 lines
168 B
C
Vendored
7 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);
|
|
}
|