1 #include <intrin.h>
2 #include <stdlib.h>
3 
_abs64(__int64 x)4 __MINGW_EXTENSION __int64 __cdecl _abs64(__int64 x) {
5     return llabs(x);
6 }
7