| 25 | return RedisModule_Calloc(nelem, elemsz); |
| 26 | } |
| 27 | static inline void *rm_realloc(void *p, size_t n) { |
| 28 | return RedisModule_Realloc(p, n); |
| 29 | } |
| 30 | static inline void rm_free(void *p) { |
| 31 | RedisModule_Free(p); |
| 32 | } |
no outgoing calls
no test coverage detected