[CRT] Let's have llabs for every compiler out there

This commit is contained in:
Jérôme Gardou 2020-09-14 09:23:50 +02:00
parent 579f501215
commit 9fc0c7a372

View File

@ -1440,9 +1440,7 @@ extern "C" {
_Check_return_ __MINGW_EXTENSION lldiv_t __cdecl lldiv(_In_ long long, _In_ long long);
#ifndef _MSC_VER
__MINGW_EXTENSION __CRT_INLINE long long __cdecl llabs(_In_ long long _j) { return (_j >= 0 ? _j : -_j); }
#endif
__MINGW_EXTENSION long long __cdecl strtoll(const char* __restrict__, char** __restrict, int);
__MINGW_EXTENSION unsigned long long __cdecl strtoull(const char* __restrict__, char** __restrict__, int);