| 1163 | * even if they use a different allocator. */ |
| 1164 | void *sds_malloc(size_t size) { return s_malloc(size); } |
| 1165 | void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size); } |
| 1166 | void sds_free(void *ptr) { s_free(ptr); } |
| 1167 | |
| 1168 | /* Perform expansion of a template string and return the result as a newly |