summaryrefslogtreecommitdiff
path: root/qstd/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'qstd/memory.c')
-rw-r--r--qstd/memory.c2
1 files changed, 1 insertions, 1 deletions
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
) {