X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fsysdep.h;h=750203573f006dd1b088a00e0ec4f788ece2ee15;hb=06f9ecf36e529695feea35038e15233dffe37bb7;hp=e525dc43361372239fd6df66fb4f1c76e273cfa2;hpb=83fd885b46b9330091aef72057fd3fc414898401;p=pciutils.git diff --git a/lib/sysdep.h b/lib/sysdep.h index e525dc4..7502035 100644 --- a/lib/sysdep.h +++ b/lib/sysdep.h @@ -1,17 +1,21 @@ /* * The PCI Library -- System-Dependent Stuff * - * Copyright (c) 1997--2004 Martin Mares + * 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__ #define UNUSED __attribute__((unused)) #define NONRET __attribute__((noreturn)) +#define FORMAT_CHECK(x,y,z) __attribute__((format(x,y,z))) #else #define UNUSED #define NONRET +#define FORMAT_CHECK(x,y,z) #define inline #endif @@ -19,7 +23,12 @@ 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 < 1900 +#define snprintf _snprintf +#define vsnprintf _vsnprintf +#endif #endif #ifdef PCI_HAVE_LINUX_BYTEORDER_H @@ -64,7 +73,6 @@ typedef u16 word; #define BIG_ENDIAN 4321 #define LITTLE_ENDIAN 1234 #define BYTE_ORDER LITTLE_ENDIAN - #define snprintf _snprintf #endif #endif