MCPcopy Create free account
hub / github.com/PolyMC/PolyMC / hoedown_realloc

Function hoedown_realloc

libraries/hoedown/src/buffer.c:34–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34void *
35hoedown_realloc(void *ptr, size_t size)
36{
37 void *ret = realloc(ptr, size);
38
39 if (!ret) {
40 fprintf(stderr, "Allocation failed.\n");
41 abort();
42 }
43
44 return ret;
45}
46
47void
48hoedown_buffer_init(

Callers 1

hoedown_stack_growFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected