[PATCH 1/3] include: Add atoll

Alex Henrie alexhenrie24 at gmail.com
Wed May 2 20:53:15 CDT 2018


Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
For https://stackoverflow.com/questions/49397035/trying-to-use-winelib-with-standard-macos-build-tools-getting-strange-compiler

 include/msvcrt/stdlib.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h
index 8d0a7c5a76..745f214718 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);
-- 
2.17.0




More information about the wine-devel mailing list