X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsysdep.h;h=1a5cb16c82df9b6c1a8f0ccb22db22313e0f9fdf;hb=8b122188dfd404984eb360e8d876682fe7eb1613;hp=f3756b62ef120fb081bbd4f59538442fd2091585;hpb=5c5ce19215cdfa54c878e09211e3cd3bc8344b82;p=pciutils.git diff --git a/lib/sysdep.h b/lib/sysdep.h index f3756b6..1a5cb16 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,9 +9,11 @@ #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 @@ -68,6 +70,10 @@ typedef u16 word; #endif #endif +#ifdef PCI_OS_SYLIXOS +#include +#endif + #ifdef PCI_OS_DJGPP #define BIG_ENDIAN 4321 #define LITTLE_ENDIAN 1234