dmd v2.104.0 (2023-06-02T08:46:32Z)
Dub
Repo
Heap
dmd
backend
ph2
Do our own storage allocator, a replacement for malloc/free.
extern (
C
++) nothrow @
nogc
struct
Heap {
Heap
*
prev
;
ubyte
*
buf
;
ubyte
*
p
;
uint
nleft
;
}
Meta
Source
See Implementation
dmd
backend
ph2
structs
Heap
Do our own storage allocator, a replacement for malloc/free.