Merge pull request #548 from baldurk/vs2010-compile-fixes
VS2010 compile fixes
This commit is contained in:
commit
1fabc0f697
9 changed files with 170 additions and 164 deletions
|
|
@ -68,6 +68,10 @@ inline long long int strtoll (const char* str, char** endptr, int base)
|
|||
{
|
||||
return _strtoi64(str, endptr, base);
|
||||
}
|
||||
inline unsigned long long int strtoull (const char* str, char** endptr, int base)
|
||||
{
|
||||
return _strtoui64(str, endptr, base);
|
||||
}
|
||||
inline long long int atoll (const char* str)
|
||||
{
|
||||
return strtoll(str, NULL, 10);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue