| 22 | return RedisModule_Alloc(n); |
| 23 | } |
| 24 | static inline void *rm_calloc(size_t nelem, size_t elemsz) { |
| 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 | } |
no outgoing calls
no test coverage detected