From a9d9547930ab0d5c7bc4060fe7bd1637289da317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonin=20D=C3=A9cimo?= Date: Thu, 1 Oct 2020 00:59:47 +0200 Subject: [PATCH] Remove unused ALIGN_UP macro --- include/util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/util.h b/include/util.h index 2bd9773..f9b52b1 100644 --- a/include/util.h +++ b/include/util.h @@ -17,4 +17,3 @@ #pragma once #define UDIV_UP(a, b) (((a) + (b) - 1) / (b)) -#define ALIGN_UP(n, a) (UDIV_UP(n, a) * a)