mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
* throw is replaced with assert(0) * catch is ignored * better foreach support * various bugfixes
17 lines
196 B
D
17 lines
196 B
D
module internal.mem;
|
|
|
|
extern(C):
|
|
|
|
void* realloc(void*,size_t);
|
|
void free(void*);
|
|
|
|
void* _d_realloc(void* ptr, size_t n)
|
|
{
|
|
return realloc(ptr, n);
|
|
}
|
|
|
|
void _d_free(void* ptr)
|
|
{
|
|
free(ptr);
|
|
}
|