X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsysdep.h;h=bdeb34a193f9d6b22479dd5d58a6da3eb7afa4ff;hb=9001c06d1e15c9e0325d6036a0bb38fb1460239d;hp=a599686efced00a4c53ef2dacd7610d963627023;hpb=ee7d83845f73a71988e3b847fef2d04b07a9aebd;p=pciutils.git diff --git a/lib/sysdep.h b/lib/sysdep.h index a599686..bdeb34a 100644 --- a/lib/sysdep.h +++ b/lib/sysdep.h @@ -1,7 +1,7 @@ /* * 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. */ @@ -9,15 +9,24 @@ #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 +typedef u8 byte; +typedef u16 word; + #ifdef PCI_OS_WINDOWS -#define bzero(x,y) memset(x,0,y) -#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 @@ -38,13 +47,21 @@ #ifdef PCI_OS_SUNOS #include +#if defined(__i386) && defined(LITTLE_ENDIAN) +# define BYTE_ORDER LITTLE_ENDIAN +#elif defined(__sparc) && defined(BIG_ENDIAN) +# define BYTE_ORDER BIG_ENDIAN +#else #define BIG_ENDIAN 4321 +#endif +#ifndef BYTE_ORDER #ifdef _LITTLE_ENDIAN #define BYTE_ORDER 1234 #else #define BYTE_ORDER 4321 #endif -#endif +#endif /* BYTE_ORDER */ +#endif /* PCI_OS_SUNOS */ #ifdef PCI_OS_WINDOWS #ifdef __MINGW32__ @@ -54,10 +71,23 @@ #define BIG_ENDIAN 4321 #define LITTLE_ENDIAN 1234 #define BYTE_ORDER LITTLE_ENDIAN - #define snprintf _snprintf #endif #endif +#ifdef PCI_OS_SYLIXOS +#include +#endif + +#ifdef PCI_OS_DJGPP + #define BIG_ENDIAN 4321 + #define LITTLE_ENDIAN 1234 + #define BYTE_ORDER LITTLE_ENDIAN +#endif + +#if !defined(BYTE_ORDER) +#error "BYTE_ORDER not defined for your platform" +#endif + #if BYTE_ORDER == BIG_ENDIAN #define cpu_to_le16 swab16 #define cpu_to_le32 swab32