Module: wine Branch: master Commit: 0ab4f08954d5f171e3172b2cf762bfa229ecb0af URL: https://source.winehq.org/git/wine.git/?a=commit;h=0ab4f08954d5f171e3172b2cf...
Author: Alex Henrie alexhenrie24@gmail.com Date: Wed May 2 19:53:15 2018 -0600
include: Add atoll.
Signed-off-by: Alex Henrie alexhenrie24@gmail.com Signed-off-by: Piotr Caban piotr@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/stdlib.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index 8d0a7c5..745f214 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h @@ -188,6 +188,7 @@ double __cdecl atof(const char*); int __cdecl atoi(const char*); int __cdecl _atoi_l(const char*,_locale_t); __msvcrt_long __cdecl atol(const char*); +__int64 __cdecl atoll(const char*); void* __cdecl calloc(size_t,size_t); #ifndef __i386__ div_t __cdecl div(int,int);