mirror of
https://github.com/ziglang/zig.git
synced 2026-01-07 05:55:36 +00:00
7 lines
118 B
C
7 lines
118 B
C
#include <intrin.h>
|
|
#include <stdlib.h>
|
|
|
|
__MINGW_EXTENSION __int64 __cdecl _abs64(__int64 x) {
|
|
return llabs(x);
|
|
}
|