In file included from build/pclient/main.c:13:
./prio/util.h:17:9: error: 'MIN' macro redefined [-Werror,-Wmacro-redefined]
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
         ^
/usr/include/sys/param.h:308:9: note: previous definition is here
 #define MIN(a,b) (((a)<(b))?(a):(b))
         ^
This commit is contained in:
Jan Beich 2020-05-20 04:09:54 +00:00 коммит произвёл Henry Corrigan-Gibbs
Родитель 52643cefe6
Коммит 24c4970e66
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -13,7 +13,9 @@
#include <mprio.h>
// Minimum of two values
#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif
// Check a Prio error code and return failure if the call fails.
#define P_CHECK(s) \