mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-11 16:32:58 +00:00
lib: add common min and max macros
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
@@ -36,9 +36,7 @@
|
||||
#include "intel_io.h"
|
||||
#include "igt_debugfs.h"
|
||||
#include "drmtest.h"
|
||||
|
||||
#define min(a,b) ((a) < (b) ? (a) : (b))
|
||||
#define max(a,b) ((a) > (b) ? (a) : (b))
|
||||
#include "igt_aux.h"
|
||||
|
||||
enum test {
|
||||
TEST_INVALID,
|
||||
|
||||
Reference in New Issue
Block a user