summaryrefslogtreecommitdiff
blob: 76ed3530833ed2fb925e659b48e9ee511be82516 (plain)
1
2
3
4
5
6
7
8
9
#ifndef ARTIFEX_EXTRACT_COMPAT_STRTOLL_H
#define ARTIFEX_EXTRACT_COMPAT_STRTOLL_H

#if defined(_MSC_VER) && (_MSC_VER < 1800) /* MSVC older than VS2013 */
    #define strtoll( text, end, base) (long long) _strtoi64(text, end, base)
    #define strtoull( text, end, base) (unsigned long long) _strtoi64(text, end, base)
#endif

#endif