From 82c55e96d573b5d58e53b21ca3c91c50a67ed40b Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 29 Dec 2024 18:24:28 +1100 Subject: expose align_address --- qstd/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qstd/memory.c') diff --git a/qstd/memory.c b/qstd/memory.c index b12ec75..61c5911 100644 --- a/qstd/memory.c +++ b/qstd/memory.c @@ -17,7 +17,7 @@ void zero(void* buf, int size) { ((uint8_t*)buf)[i] = 0; } -static uintptr_t align_address( +uintptr_t align_address( uintptr_t ad, size_t al ) { -- cgit v1.2.3-54-g00ecf