mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 00:55:49 +03:00

* throw is replaced with assert(0) * catch is ignored * better foreach support * various bugfixes
16 lines
196 B
D
16 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);
|
|
}
|