https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9fc0c7a372a6b448efa73…
commit 9fc0c7a372a6b448efa735e023e74a4895f6e9a9
Author: Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Mon Sep 14 09:23:50 2020 +0200
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Wed Sep 16 10:35:29 2020 +0200
[CRT] Let's have llabs for every compiler out there
---
sdk/include/crt/stdlib.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/sdk/include/crt/stdlib.h b/sdk/include/crt/stdlib.h
index 2ad4300c95c..a9fdbf604e7 100644
--- a/sdk/include/crt/stdlib.h
+++ b/sdk/include/crt/stdlib.h
@@ -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);