about summary refs log tree commit diff
path: root/src/malloc/malloc_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/malloc/malloc_impl.h')
-rw-r--r--src/malloc/malloc_impl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/malloc/malloc_impl.h b/src/malloc/malloc_impl.h
index 2c61b3ff..6a92c1c6 100644
--- a/src/malloc/malloc_impl.h
+++ b/src/malloc/malloc_impl.h
@@ -6,8 +6,6 @@
 
 hidden void *__expand_heap(size_t *);
 
-hidden void *__memalign(size_t, size_t);
-
 struct chunk {
 	size_t psize, csize;
 	struct chunk *next, *prev;