diff options
Diffstat (limited to 'memory.c')
-rw-r--r-- | memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ #include <stdint.h> #include <stddef.h> -int aligned(void* p, int a) { +int aligned(const void* p, int a) { return (uintptr_t)p % a == 0; } |