aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/u_memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/u_memory.h')
-rw-r--r--src/util/u_memory.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/u_memory.h b/src/util/u_memory.h
index 15a0bb419b5..4cdccb66aaf 100644
--- a/src/util/u_memory.h
+++ b/src/util/u_memory.h
@@ -60,6 +60,7 @@ extern "C" {
#define align_malloc(_size, _alignment) os_malloc_aligned(_size, _alignment)
#define align_free(_ptr) os_free_aligned(_ptr)
+#define align_realloc(_ptr, _oldsize, _newsize, _alignment) os_realloc_aligned(_ptr, _oldsize, _newsize, _alignment)
static inline void *
align_calloc(size_t size, unsigned long alignment)