Removed free macro

This commit is contained in:
Eduardo Quezada
2022-09-16 20:36:44 -03:00
parent e412ec30a0
commit 8a68596b64
12 changed files with 30 additions and 31 deletions

View File

@@ -2,11 +2,10 @@
#define GUARD_ALLOC_H
#define HEAP_SIZE 0x1C000
#define free Free
#define FREE_AND_SET_NULL(ptr) \
{ \
free(ptr); \
Free(ptr); \
ptr = NULL; \
}