X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsysdep.h;h=7f22427ba6d3f778d6ec29cafd13565043425be2;hb=a8a0f8103e276564fcff93b0feaa07633d051d81;hp=750203573f006dd1b088a00e0ec4f788ece2ee15;hpb=6182921907ef3cc31be3394eb468b24bcd3955a8;p=pciutils.git diff --git a/lib/sysdep.h b/lib/sysdep.h index 7502035..7f22427 100644 --- a/lib/sysdep.h +++ b/lib/sysdep.h @@ -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 @@ -76,6 +83,10 @@ typedef u16 word; #endif #endif +#ifdef PCI_OS_HAIKU +#include +#endif + #ifdef PCI_OS_SYLIXOS #include #endif @@ -86,6 +97,10 @@ typedef u16 word; #define BYTE_ORDER LITTLE_ENDIAN #endif +#ifdef PCI_OS_AMIGAOS + #include +#endif + #if !defined(BYTE_ORDER) #error "BYTE_ORDER not defined for your platform" #endif