/*
* The PCI Library -- Types and Format Strings
*
- * Copyright (c) 1997--2017 Martin Mares <mj@ucw.cz>
+ * Copyright (c) 1997--2022 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#if defined(__GNUC__) && __GNUC__ > 2
#define PCI_PRINTF(x,y) __attribute__((format(printf, x, y)))
+#define PCI_NONRET __attribute((noreturn))
#else
#define PCI_PRINTF(x,y)
+#define PCI_NONRET
#endif