MCPcopy Create free account
hub / github.com/antirez/botlib / sds_realloc

Function sds_realloc

sds.c:1123–1123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1121 * even if they use a different allocator. */
1122void *sds_malloc(size_t size) { return s_malloc(size); }
1123void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size); }
1124void sds_free(void *ptr) { s_free(ptr); }
1125
1126#if defined(SDS_TEST_MAIN)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected