]> git.ipfire.org Git - thirdparty/pciutils.git/blobdiff - lib/sysdep.h
windows: Add strtoull defines for msvc
[thirdparty/pciutils.git] / lib / sysdep.h
index 750203573f006dd1b088a00e0ec4f788ece2ee15..a11080af96d228dc0a7bf9df5e83ffeeacf16f17 100644 (file)
@@ -25,6 +25,13 @@ typedef u16 word;
 #ifdef PCI_OS_WINDOWS
 #define strcasecmp _strcmpi
 #define strncasecmp _strnicmp
+#if defined(_MSC_VER) && _MSC_VER < 1800
+#if _MSC_VER < 1300
+#define strtoull strtoul
+#else
+#define strtoull _strtoui64
+#endif
+#endif
 #if defined(_MSC_VER) && _MSC_VER < 1900
 #define snprintf _snprintf
 #define vsnprintf _vsnprintf