Remove local_strtoull, windows has equivalent function _strtoui64

This commit is contained in:
Cristian Rodríguez
2012-04-17 11:38:14 -03:00
committed by Erik de Castro Lopo
parent 9b7cb22f84
commit 7e62afe9fa
3 changed files with 10 additions and 66 deletions

View File

@@ -59,3 +59,11 @@
#include <inttypes.h>
#endif
#if defined(_MSC_VER)
#define strtoll _strtoi64
#endif
#if defined(_MSC_VER)
#define restrict __restrict
#endif