diff options
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index b9ce607d..a86aac86 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -106,6 +106,9 @@ #ifndef RL_CALLOC #define RL_CALLOC(n,sz) calloc(n,sz) #endif +#ifndef RL_REALLOC + #define RL_REALLOC(n,sz) realloc(n,sz) +#endif #ifndef RL_FREE #define RL_FREE(p) free(p) #endif |
