mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-25 13:58:32 +00:00
9 lines
242 B
C
9 lines
242 B
C
#include "third_party/dlmalloc/dlmalloc.h"
|
|
#include "libc/mem/mem.h"
|
|
|
|
void *dlmemalign(size_t alignment, size_t bytes) {
|
|
if (alignment <= MALLOC_ALIGNMENT) {
|
|
return dlmalloc(bytes);
|
|
}
|
|
return dlmemalign$impl(gm, alignment, bytes);
|
|
}
|