| 1122 | void *sds_malloc(size_t size) { return s_malloc(size); } |
| 1123 | void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size); } |
| 1124 | void sds_free(void *ptr) { s_free(ptr); } |
| 1125 | |
| 1126 | #if defined(SDS_TEST_MAIN) |
| 1127 | #include <stdio.h> |
nothing calls this directly
no outgoing calls
no test coverage detected