work around MSVC error C2322: '...' address of dllimport '...' is not static */
| 163 | #if defined(_MSC_VER) |
| 164 | /* work around MSVC error C2322: '...' address of dllimport '...' is not static */ |
| 165 | static void * CJSON_CDECL internal_malloc(size_t size) |
| 166 | { |
| 167 | return malloc(size); |
| 168 | } |
| 169 | static void CJSON_CDECL internal_free(void *pointer) |
| 170 | { |
| 171 | free(pointer); |
nothing calls this directly
no outgoing calls
no test coverage detected