commit 0b0e925f5e7422222cbaf8dc4de0121c5d9da5d3 parent b4c6c0ff9bad819f539c1e83a367d570bf15e9d2 Author: sin <sin@2f30.org> Date: Wed, 24 Jul 2013 18:35:36 +0300 Put stub for posix_memalign() Diffstat:
M | alloc.c | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/alloc.c b/alloc.c @@ -119,3 +119,9 @@ malloc_size(void *p) { return malloc_usable_size(p); } + +int +posix_memalign(void **ptr, size_t alignment, size_t size) +{ + abort(); +}