diff options
| author | raysan5 <[email protected]> | 2020-01-19 11:23:38 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-01-19 11:23:38 +0100 |
| commit | bec467705e83ecf66f4bf75ddbcad8ac4a9d8e95 (patch) | |
| tree | e799506eebe2b9af8b44cb8b1bab1e14073c2394 /src/raylib.h | |
| parent | fe0d04c8796234d53b474e02dd4d8e198d32ef99 (diff) | |
| download | raylib-bec467705e83ecf66f4bf75ddbcad8ac4a9d8e95.tar.gz raylib-bec467705e83ecf66f4bf75ddbcad8ac4a9d8e95.zip | |
Review custom allocators
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 |
