| 1205 | * even if they use a different allocator. */ |
| 1206 | void *sds_malloc(size_t size) { return s_malloc(size, MALLOC_SHARED); } |
| 1207 | void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size, MALLOC_SHARED); } |
| 1208 | void sds_free(void *ptr) { s_free(ptr); } |
| 1209 | |
| 1210 | /* Perform expansion of a template string and return the result as a newly |