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