aboutsummaryrefslogtreecommitdiff
path: root/include/helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/helpers.h')
-rw-r--r--include/helpers.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/helpers.h b/include/helpers.h
index 112184f..898c02c 100644
--- a/include/helpers.h
+++ b/include/helpers.h
@@ -53,5 +53,6 @@ extern unsigned long SLOF_get_vtpm_unit(void);
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#define ROUNDUP(x,v) ((((x) + ((v) - 1)) / (v)) * (v))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
+#define MIN(x,y) ((x) < (y) ? (x) : (y))
#endif