mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-03 04:53:32 +00:00
9 lines
213 B
C
9 lines
213 B
C
#include "libc/mem/mem.h"
|
|
#include "third_party/dlmalloc/dlmalloc.h"
|
|
|
|
void *dlvalloc(size_t bytes) {
|
|
size_t pagesz;
|
|
ensure_initialization();
|
|
pagesz = mparams.page_size;
|
|
return dlmemalign(pagesz, bytes);
|
|
}
|