mirror of
https://github.com/ziglang/zig.git
synced 2026-01-24 00:05:28 +00:00
7 lines
184 B
C
7 lines
184 B
C
unsigned long long __cdecl _byteswap_uint64(unsigned long long _Int64);
|
|
|
|
unsigned long long __cdecl _byteswap_uint64(unsigned long long _Int64)
|
|
{
|
|
return __builtin_bswap64(_Int64);
|
|
}
|