| 132 | return malloc(size); |
| 133 | } |
| 134 | static void CJSON_CDECL internal_free(void *pointer) |
| 135 | { |
| 136 | free(pointer); |
| 137 | } |
| 138 | static void * CJSON_CDECL internal_realloc(void *pointer, size_t size) |
| 139 | { |
| 140 | return realloc(pointer, size); |
nothing calls this directly
no outgoing calls
no test coverage detected