diff options
author | Haru <haru@dotalux.com> | 2013-08-26 22:38:55 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-08-26 22:39:50 +0200 |
commit | 3d19c2df4007f2d31cd8efd0c5e89d787f4cb13e (patch) | |
tree | c974355d7f178619e2f1af4475cd06aab9593cd5 /src/common | |
parent | 86602bbb645987b8b59588d1d2c74679589f6a7b (diff) | |
download | hercules-3d19c2df4007f2d31cd8efd0c5e89d787f4cb13e.tar.gz hercules-3d19c2df4007f2d31cd8efd0c5e89d787f4cb13e.tar.bz2 hercules-3d19c2df4007f2d31cd8efd0c5e89d787f4cb13e.tar.xz hercules-3d19c2df4007f2d31cd8efd0c5e89d787f4cb13e.zip |
Merged strtoll MSVC fix from Ind's ScriptEngineUpdateP1 branch
Credits to Ind for the fix, thanks to Takkun for reporting it
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/cbasetypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index 05b799045..1e4fc04c7 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -240,6 +240,7 @@ typedef uintptr_t uintptr; #endif #if defined(_MSC_VER) && _MSC_VER > 1200 #define strtoull _strtoui64 +#define strtoll _strtoi64 #endif // keyword replacement |