Skip to content

Commit

Permalink
Added include fix for malloc
Browse files Browse the repository at this point in the history
  • Loading branch information
JCash committed Jun 10, 2024
1 parent 9621b7f commit 3b38321
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion defold-spine/src/res_spine_json.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#include "res_spine_json.h"
#include <memory.h>
#include <malloc.h>
#include <string.h>
#include <stdio.h>

#ifdef __MACH__
#include <malloc/malloc.h>
#else
#include <malloc.h>
#endif

#include <dmsdk/dlib/log.h>
#include <dmsdk/resource/resource.h>

Expand Down

0 comments on commit 3b38321

Please sign in to comment.