X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsysdep.h;h=7f22427ba6d3f778d6ec29cafd13565043425be2;hb=4c392dc366cbfcf515cb4b4607ee3a1777dc2bbc;hp=1a5cb16c82df9b6c1a8f0ccb22db22313e0f9fdf;hpb=76d47191f9274991059a41e19e1999a12c0d3416;p=pciutils.git diff --git a/lib/sysdep.h b/lib/sysdep.h index 1a5cb16..7f22427 100644 --- a/lib/sysdep.h +++ b/lib/sysdep.h @@ -3,7 +3,9 @@ * * Copyright (c) 1997--2020 Martin Mares * - * Can be freely distributed and used under the terms of the GNU GPL. + * Can be freely distributed and used under the terms of the GNU GPL v2+ + * + * SPDX-License-Identifier: GPL-2.0-or-later */ #ifdef __GNUC__ @@ -21,7 +23,19 @@ typedef u8 byte; typedef u16 word; #ifdef PCI_OS_WINDOWS -#define strcasecmp strcmpi +#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 +#endif #endif #ifdef PCI_HAVE_LINUX_BYTEORDER_H @@ -66,10 +80,13 @@ typedef u16 word; #define BIG_ENDIAN 4321 #define LITTLE_ENDIAN 1234 #define BYTE_ORDER LITTLE_ENDIAN - #define snprintf _snprintf #endif #endif +#ifdef PCI_OS_HAIKU +#include +#endif + #ifdef PCI_OS_SYLIXOS #include #endif @@ -80,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