Review custom allocators
This commit is contained in:
parent
fe0d04c879
commit
bec467705e
4 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue