| 167 | return malloc(size); |
| 168 | } |
| 169 | static void CJSON_CDECL internal_free(void *pointer) |
| 170 | { |
| 171 | free(pointer); |
| 172 | } |
| 173 | static void * CJSON_CDECL internal_realloc(void *pointer, size_t size) |
| 174 | { |
| 175 | return realloc(pointer, size); |
nothing calls this directly
no outgoing calls
no test coverage detected