From 7237d673904d8568a2f9c290a0247c9d1a07c5d2 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Mon, 11 Oct 2021 23:18:47 +0300 Subject: Start designing vmem framework --- include/apos/utils.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/apos/utils.h') diff --git a/include/apos/utils.h b/include/apos/utils.h index 3855a37..39d5b83 100644 --- a/include/apos/utils.h +++ b/include/apos/utils.h @@ -11,6 +11,9 @@ #define MIN4(a, b, c, d) (MIN3(a, b, c) <= MIN3(b, c, d) ? MIN3(a, b, c) : MIN3(b, c, d)) /* etc... */ +#define GLUE2(x, y) x##y +#define GLUE(x, y) GLUE2(x, y) + #include static inline size_t align_up(size_t val, size_t a) -- cgit v1.3