1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

always convert atoll to _atoi64 for MSVC users

This commit is contained in:
Kenichi Ishigaki 2012-04-27 05:15:36 +00:00
parent 95b3acae65
commit 5c6eaa7921

View file

@ -142,10 +142,8 @@ newUTF8SVpvn(char *s, STRLEN len) {
#endif /* #ifdef SvUTF8_on */
#ifdef USE_64_BIT_INT
# ifdef _MSC_VER
# define atoll _atoi64
# endif
#ifdef _MSC_VER
# define atoll _atoi64
#endif
#endif /* #ifndef _DBDIMP_H */