mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-28 22:18:29 +00:00
7 lines
232 B
C
7 lines
232 B
C
#include "libc/mem/mem.h"
|
|
#include "third_party/dlmalloc/dlmalloc.h"
|
|
|
|
void *dlmemalign(size_t alignment, size_t bytes) {
|
|
if (alignment <= MALLOC_ALIGNMENT) return dlmalloc(bytes);
|
|
return dlmemalign$impl(gm, alignment, bytes);
|
|
}
|