Chromium Code Reviews| Index: fusl/src/malloc/aligned_alloc.c |
| diff --git a/fusl/src/malloc/aligned_alloc.c b/fusl/src/malloc/aligned_alloc.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cc0a801208712a9f31759690e55e3eabfd7c99f6 |
| --- /dev/null |
| +++ b/fusl/src/malloc/aligned_alloc.c |
| @@ -0,0 +1,8 @@ |
| +#include <stdlib.h> |
| + |
| +void *__memalign(size_t, size_t); |
| + |
| +void *aligned_alloc(size_t align, size_t len) |
| +{ |
| + return __memalign(align, len); |
| +} |